mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-21 03:11:16 +08:00
Stdlib: correct many parameter names (#9815)
This commit is contained in:
@@ -885,7 +885,10 @@ def times() -> times_result: ...
|
||||
def waitpid(__pid: int, __options: int) -> tuple[int, int]: ...
|
||||
|
||||
if sys.platform == "win32":
|
||||
def startfile(path: StrOrBytesPath, operation: str | None = None) -> None: ...
|
||||
if sys.version_info >= (3, 8):
|
||||
def startfile(path: StrOrBytesPath, operation: str | None = None) -> None: ...
|
||||
else:
|
||||
def startfile(filepath: StrOrBytesPath, operation: str | None = None) -> None: ...
|
||||
|
||||
else:
|
||||
def spawnlp(mode: int, file: StrOrBytesPath, arg0: StrOrBytesPath, *args: StrOrBytesPath) -> int: ...
|
||||
|
||||
Reference in New Issue
Block a user