stdlib: add argument default values (#9501)

This commit is contained in:
Jelle Zijlstra
2023-01-18 00:37:34 -08:00
committed by GitHub
parent 6cb934291f
commit ddfaca3200
272 changed files with 2529 additions and 2467 deletions

View File

@@ -3,10 +3,10 @@ __all__ = ["version", "bootstrap"]
def version() -> str: ...
def bootstrap(
*,
root: str | None = ...,
upgrade: bool = ...,
user: bool = ...,
altinstall: bool = ...,
default_pip: bool = ...,
verbosity: int = ...,
root: str | None = None,
upgrade: bool = False,
user: bool = False,
altinstall: bool = False,
default_pip: bool = False,
verbosity: int = 0,
) -> None: ...