Files
typeshed/stdlib/sysconfig.pyi

32 lines
1.1 KiB
Python

from typing import IO, Any, overload
__all__ = [
"get_config_h_filename",
"get_config_var",
"get_config_vars",
"get_makefile_filename",
"get_path",
"get_path_names",
"get_paths",
"get_platform",
"get_python_version",
"get_scheme_names",
"parse_config_h",
]
def get_config_var(name: str) -> str | None: ...
@overload
def get_config_vars() -> dict[str, Any]: ...
@overload
def get_config_vars(arg: str, *args: str) -> list[Any]: ...
def get_scheme_names() -> tuple[str, ...]: ...
def get_path_names() -> tuple[str, ...]: ...
def get_path(name: str, scheme: str = ..., vars: dict[str, Any] | None = ..., expand: bool = ...) -> str: ...
def get_paths(scheme: str = ..., vars: dict[str, Any] | None = ..., expand: bool = ...) -> dict[str, str]: ...
def get_python_version() -> str: ...
def get_platform() -> str: ...
def is_python_build(check_home: bool = ...) -> bool: ...
def parse_config_h(fp: IO[Any], vars: dict[str, Any] | None = ...) -> dict[str, Any]: ...
def get_config_h_filename() -> str: ...
def get_makefile_filename() -> str: ...