aboutsummaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-01-09 00:35:01 +0100
committerGitHub <noreply@github.com>2021-01-09 00:35:01 +0100
commit0e2a0f72cc9af0899eacb5604e44a563c0b06110 (patch)
tree73587df57200aa0b1c7d4c4ce476a07dbea8d6e6 /Tools
parentFix a typo in docs for typing.Concatenate (#24169) (diff)
downloadcpython-0e2a0f72cc9af0899eacb5604e44a563c0b06110.tar.gz
cpython-0e2a0f72cc9af0899eacb5604e44a563c0b06110.tar.bz2
cpython-0e2a0f72cc9af0899eacb5604e44a563c0b06110.zip
bpo-42802: Remove distutils bdist_wininst command (GH-24043)
The distutils bdist_wininst command deprecated in Python 3.8 has been removed. The distutils bidst_wheel command is now recommended to distribute binary packages on Windows. * Remove Lib/distutils/command/bdist_wininst.py * Remove PC/bdist_wininst/ project * Remove Lib/distutils/command/wininst-*.exe programs * Remove all references to bdist_wininst
Diffstat (limited to 'Tools')
-rw-r--r--Tools/msi/distutils.command.bdist_wininst.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/Tools/msi/distutils.command.bdist_wininst.py b/Tools/msi/distutils.command.bdist_wininst.py
deleted file mode 100644
index 548fdd0cc43..00000000000
--- a/Tools/msi/distutils.command.bdist_wininst.py
+++ /dev/null
@@ -1,23 +0,0 @@
-"""distutils.command.bdist_wininst
-
-Suppresses the 'bdist_wininst' command, while still allowing
-setuptools to import it without breaking."""
-
-from distutils.core import Command
-from distutils.errors import DistutilsPlatformError
-
-class bdist_wininst(Command):
- description = "create an executable installer for MS Windows"
-
- # Marker for tests that we have the unsupported bdist_wininst
- _unsupported = True
-
- def initialize_options(self):
- pass
-
- def finalize_options(self):
- pass
-
- def run(self):
- raise DistutilsPlatformError("bdist_wininst is not supported "
- "in this Python distribution")