Consistently use '= ...' for optional parameters.

This commit is contained in:
Matthias Kramm
2015-11-09 13:55:00 -08:00
parent 375bf063b1
commit 94c9ce8fd0
278 changed files with 2085 additions and 2085 deletions

View File

@@ -1,5 +1,5 @@
from typing import Any
def getline(filename:str, lineno:int, module_globals: Any=None) -> str: pass
def getline(filename:str, lineno:int, module_globals: Any=...) -> str: pass
def clearcache() -> None: pass
def getlines(filename: str, module_globals: Any=None) -> None: pass
def getlines(filename: str, module_globals: Any=...) -> None: pass