summaryrefslogtreecommitdiffstats
path: root/Tools/msi/distutils.command.bdist_wininst.py
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/msi/distutils.command.bdist_wininst.py')
-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 548fdd0..0000000
--- 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")