massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / sysconfig.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/distutils/sysconfig.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/distutils/sysconfig.pyi
new file mode 100644 (file)
index 0000000..3f579be
--- /dev/null
@@ -0,0 +1,13 @@
+from distutils.ccompiler import CCompiler
+from typing import Mapping
+
+PREFIX: str
+EXEC_PREFIX: str
+
+def get_config_var(name: str) -> int | str | None: ...
+def get_config_vars(*args: str) -> Mapping[str, int | str]: ...
+def get_config_h_filename() -> str: ...
+def get_makefile_filename() -> str: ...
+def get_python_inc(plat_specific: bool = ..., prefix: str | None = ...) -> str: ...
+def get_python_lib(plat_specific: bool = ..., standard_lib: bool = ..., prefix: str | None = ...) -> str: ...
+def customize_compiler(compiler: CCompiler) -> None: ...