summaryrefslogtreecommitdiffstats
path: root/PC/layout/support/distutils.command.bdist_wininst.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-12-07 13:31:40 (GMT)
committerGitHub <noreply@github.com>2018-12-07 13:31:40 (GMT)
commit783b794a5e6ea3bbbaba45a18b9e03ac322b3bd4 (patch)
tree06a129f9225ba46ca2f69cef78b4938184c9d7d3 /PC/layout/support/distutils.command.bdist_wininst.py
parent0d5730e6437b157f4aeaf5d2e67abca23448c29a (diff)
downloadcpython-783b794a5e6ea3bbbaba45a18b9e03ac322b3bd4.zip
cpython-783b794a5e6ea3bbbaba45a18b9e03ac322b3bd4.tar.gz
cpython-783b794a5e6ea3bbbaba45a18b9e03ac322b3bd4.tar.bz2
Revert "[3.7] bpo-34977: Add Windows App Store package (GH-10245)" (GH-11021)
This reverts commit 253209149389e6793a052034e1f2d97691086f18.
Diffstat (limited to 'PC/layout/support/distutils.command.bdist_wininst.py')
-rw-r--r--PC/layout/support/distutils.command.bdist_wininst.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/PC/layout/support/distutils.command.bdist_wininst.py b/PC/layout/support/distutils.command.bdist_wininst.py
deleted file mode 100644
index 6e9b49f..0000000
--- a/PC/layout/support/distutils.command.bdist_wininst.py
+++ /dev/null
@@ -1,25 +0,0 @@
-"""distutils.command.bdist_wininst
-
-Suppress 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"
- )