massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / sysconfig.pyi
1 from distutils.ccompiler import CCompiler
2 from typing import Mapping
3
4 PREFIX: str
5 EXEC_PREFIX: str
6
7 def get_config_var(name: str) -> int | str | None: ...
8 def get_config_vars(*args: str) -> Mapping[str, int | str]: ...
9 def get_config_h_filename() -> str: ...
10 def get_makefile_filename() -> str: ...
11 def get_python_inc(plat_specific: bool = ..., prefix: str | None = ...) -> str: ...
12 def get_python_lib(plat_specific: bool = ..., standard_lib: bool = ..., prefix: str | None = ...) -> str: ...
13 def customize_compiler(compiler: CCompiler) -> None: ...