massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / command / build.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/distutils/command/build.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/distutils/command/build.pyi
new file mode 100644 (file)
index 0000000..cf3c8a5
--- /dev/null
@@ -0,0 +1,31 @@
+from typing import Any
+
+from ..cmd import Command
+
+def show_compilers() -> None: ...
+
+class build(Command):
+    description: str
+    user_options: Any
+    boolean_options: Any
+    help_options: Any
+    build_base: str
+    build_purelib: Any
+    build_platlib: Any
+    build_lib: Any
+    build_temp: Any
+    build_scripts: Any
+    compiler: Any
+    plat_name: Any
+    debug: Any
+    force: int
+    executable: Any
+    parallel: Any
+    def initialize_options(self) -> None: ...
+    def finalize_options(self) -> None: ...
+    def run(self) -> None: ...
+    def has_pure_modules(self): ...
+    def has_c_libraries(self): ...
+    def has_ext_modules(self): ...
+    def has_scripts(self): ...
+    sub_commands: Any