mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 10:51:15 +08:00
Consistently use '= ...' for optional parameters.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user