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
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/distutils/command/bdist_msi.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/distutils/command/bdist_msi.pyi
new file mode 100644 (file)
index 0000000..e4f64ff
--- /dev/null
@@ -0,0 +1,43 @@
+import sys
+from typing import Any
+
+from ..cmd import Command
+
+if sys.platform == "win32":
+    from msilib import Dialog
+    class PyDialog(Dialog):
+        def __init__(self, *args, **kw) -> None: ...
+        def title(self, title) -> None: ...
+        def back(self, title, next, name: str = ..., active: int = ...): ...
+        def cancel(self, title, next, name: str = ..., active: int = ...): ...
+        def next(self, title, next, name: str = ..., active: int = ...): ...
+        def xbutton(self, name, title, next, xpos): ...
+    class bdist_msi(Command):
+        description: str
+        user_options: Any
+        boolean_options: Any
+        all_versions: Any
+        other_version: str
+        if sys.version_info >= (3, 9):
+            def __init__(self, *args, **kw) -> None: ...
+        bdist_dir: Any
+        plat_name: Any
+        keep_temp: int
+        no_target_compile: int
+        no_target_optimize: int
+        target_version: Any
+        dist_dir: Any
+        skip_build: Any
+        install_script: Any
+        pre_install_script: Any
+        versions: Any
+        def initialize_options(self) -> None: ...
+        install_script_key: Any
+        def finalize_options(self) -> None: ...
+        db: Any
+        def run(self) -> None: ...
+        def add_files(self) -> None: ...
+        def add_find_python(self) -> None: ...
+        def add_scripts(self) -> None: ...
+        def add_ui(self) -> None: ...
+        def get_installer_filename(self, fullname): ...