diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2021-09-07 13:34:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 12:34:27 +0200 |
commit | eb254b43d2916ef8c0e9ca815fe047411d848aae (patch) | |
tree | 0b6701104ee3a7371daba5081b4d5c282c3bfbd6 /Lib/test/test_sundry.py | |
parent | 533e725821b15e2df2cd4479a34597c1d8faf616 (diff) | |
download | cpython-eb254b43d2916ef8c0e9ca815fe047411d848aae.tar.gz cpython-eb254b43d2916ef8c0e9ca815fe047411d848aae.zip |
bpo-45124: Remove the bdist_msi command (GH-28195)
The bdist_msi command, deprecated in Python 3.9, is now removed.
Use bdist_wheel (wheel packages) instead.
Diffstat (limited to 'Lib/test/test_sundry.py')
-rw-r--r-- | Lib/test/test_sundry.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py index 007d68817c6..de2e7305ccc 100644 --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -1,7 +1,5 @@ """Do a minimal test of all the modules that aren't otherwise tested.""" import importlib -import platform -import sys from test import support from test.support import import_helper from test.support import warnings_helper @@ -28,8 +26,6 @@ class TestUntestedModules(unittest.TestCase): import distutils.unixccompiler import distutils.command.bdist_dumb - if sys.platform.startswith('win') and not platform.win32_is_iot(): - import distutils.command.bdist_msi import distutils.command.bdist import distutils.command.bdist_rpm import distutils.command.build_clib |