mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Fix a few issues with parameter defaults (#9572)
This commit is contained in:
@@ -28,8 +28,8 @@ if sys.version_info >= (3, 10):
|
||||
def get_preferred_scheme(key: Literal["prefix", "home", "user"]) -> str: ...
|
||||
|
||||
def get_path_names() -> tuple[str, ...]: ...
|
||||
def get_path(name: str, scheme: str = "venv", vars: dict[str, Any] | None = None, expand: bool = True) -> str: ...
|
||||
def get_paths(scheme: str = "venv", vars: dict[str, Any] | None = None, expand: bool = True) -> dict[str, str]: ...
|
||||
def get_path(name: str, scheme: str = ..., vars: dict[str, Any] | None = None, expand: bool = True) -> str: ...
|
||||
def get_paths(scheme: str = ..., vars: dict[str, Any] | None = None, expand: bool = True) -> dict[str, str]: ...
|
||||
def get_python_version() -> str: ...
|
||||
def get_platform() -> str: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user