mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-28 22:02:24 +08:00
Consistently use '= ...' for optional parameters.
This commit is contained in:
@@ -33,7 +33,7 @@ def join(path: str, *paths: str) -> str: ...
|
||||
def normcase(path: str) -> str: ...
|
||||
def normpath(path: str) -> str: ...
|
||||
def realpath(path: str) -> str: ...
|
||||
def relpath(path: str, start: str = None) -> str: ...
|
||||
def relpath(path: str, start: str = ...) -> str: ...
|
||||
def samefile(path1: str, path2: str) -> bool: ...
|
||||
|
||||
def sameopenfile(fp1: IO[Any], fp2: IO[Any]) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user