massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / command / bdist_msi.pyi
1 import sys
2 from typing import Any
3
4 from ..cmd import Command
5
6 if sys.platform == "win32":
7     from msilib import Dialog
8     class PyDialog(Dialog):
9         def __init__(self, *args, **kw) -> None: ...
10         def title(self, title) -> None: ...
11         def back(self, title, next, name: str = ..., active: int = ...): ...
12         def cancel(self, title, next, name: str = ..., active: int = ...): ...
13         def next(self, title, next, name: str = ..., active: int = ...): ...
14         def xbutton(self, name, title, next, xpos): ...
15     class bdist_msi(Command):
16         description: str
17         user_options: Any
18         boolean_options: Any
19         all_versions: Any
20         other_version: str
21         if sys.version_info >= (3, 9):
22             def __init__(self, *args, **kw) -> None: ...
23         bdist_dir: Any
24         plat_name: Any
25         keep_temp: int
26         no_target_compile: int
27         no_target_optimize: int
28         target_version: Any
29         dist_dir: Any
30         skip_build: Any
31         install_script: Any
32         pre_install_script: Any
33         versions: Any
34         def initialize_options(self) -> None: ...
35         install_script_key: Any
36         def finalize_options(self) -> None: ...
37         db: Any
38         def run(self) -> None: ...
39         def add_files(self) -> None: ...
40         def add_find_python(self) -> None: ...
41         def add_scripts(self) -> None: ...
42         def add_ui(self) -> None: ...
43         def get_installer_filename(self, fullname): ...