massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / command / build_clib.pyi
1 from typing import Any
2
3 from ..cmd import Command
4
5 def show_compilers() -> None: ...
6
7 class build_clib(Command):
8     description: str
9     user_options: Any
10     boolean_options: Any
11     help_options: Any
12     build_clib: Any
13     build_temp: Any
14     libraries: Any
15     include_dirs: Any
16     define: Any
17     undef: Any
18     debug: Any
19     force: int
20     compiler: Any
21     def initialize_options(self) -> None: ...
22     def finalize_options(self) -> None: ...
23     def run(self) -> None: ...
24     def check_library_list(self, libraries) -> None: ...
25     def get_library_names(self): ...
26     def get_source_files(self): ...
27     def build_libraries(self, libraries) -> None: ...