mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 19:01:15 +08:00
Remove setuptools._distutils.command.bdst_msi (#9174)
It does not exist
This commit is contained in:
@@ -27,9 +27,6 @@ pkg_resources.py31compat
|
||||
pkg_resources.split_sections
|
||||
pkg_resources.to_filename
|
||||
|
||||
# Only available on Windows
|
||||
setuptools._distutils.command.bdist_msi
|
||||
|
||||
# Unclear import from stdlib/sub-classing related error
|
||||
setuptools._distutils.core.Distribution.parse_config_files
|
||||
|
||||
|
||||
@@ -1,45 +0,0 @@
|
||||
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): ...
|
||||
Reference in New Issue
Block a user