massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2and3 / distutils / sysconfig.pyi
1 # Stubs for distutils.sysconfig\r
2 \r
3 from typing import Mapping, Optional, Union\r
4 from distutils.ccompiler import CCompiler\r
5 \r
6 PREFIX = ...  # type: str\r
7 EXEC_PREFIX = ...  # type: str\r
8 \r
9 def get_config_var(name: str) -> Union[int, str, None]: ...\r
10 def get_config_vars(*args: str) -> Mapping[str, Union[int, str]]: ...\r
11 def get_config_h_filename() -> str: ...\r
12 def get_makefile_filename() -> str: ...\r
13 def get_python_inc(plat_specific: bool = ...,\r
14                    prefix: Optional[str] = ...) -> str: ...\r
15 def get_python_lib(plat_specific: bool = ..., standard_lib: bool = ...,\r
16                    prefix: Optional[str] = ...) -> str: ...\r
17 \r
18 def customize_compiler(compiler: CCompiler) -> None: ...\r
19 def set_python_build() -> None: ...\r