massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / command / build.pyi
1 from typing import Any
2
3 from ..cmd import Command
4
5 def show_compilers() -> None: ...
6
7 class build(Command):
8     description: str
9     user_options: Any
10     boolean_options: Any
11     help_options: Any
12     build_base: str
13     build_purelib: Any
14     build_platlib: Any
15     build_lib: Any
16     build_temp: Any
17     build_scripts: Any
18     compiler: Any
19     plat_name: Any
20     debug: Any
21     force: int
22     executable: Any
23     parallel: Any
24     def initialize_options(self) -> None: ...
25     def finalize_options(self) -> None: ...
26     def run(self) -> None: ...
27     def has_pure_modules(self): ...
28     def has_c_libraries(self): ...
29     def has_ext_modules(self): ...
30     def has_scripts(self): ...
31     sub_commands: Any