1from distutils.ccompiler import CCompiler
2from typing import Mapping, Optional, Union
3
4PREFIX: str
5EXEC_PREFIX: str
6
7def get_config_var(name: str) -> Union[int, str, None]: ...
8def get_config_vars(*args: str) -> Mapping[str, Union[int, str]]: ...
9def get_config_h_filename() -> str: ...
10def get_makefile_filename() -> str: ...
11def get_python_inc(plat_specific: bool = ..., prefix: Optional[str] = ...) -> str: ...
12def get_python_lib(plat_specific: bool = ..., standard_lib: bool = ..., prefix: Optional[str] = ...) -> str: ...
13def customize_compiler(compiler: CCompiler) -> None: ...
14def set_python_build() -> None: ...
15