summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/bdist.py
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-10-10 23:20:12 (GMT)
committerJesus Cea <jcea@jcea.es>2012-10-10 23:20:12 (GMT)
commitd17833d360a7e35675233c4310cbccbd19c9ca79 (patch)
treef0616a9a4cd16aef3952c6915049196c9c7853fe /Lib/distutils/command/bdist.py
parent9407d502085d0e3d281eb5274149ebca4567034c (diff)
downloadcpython-d17833d360a7e35675233c4310cbccbd19c9ca79.zip
cpython-d17833d360a7e35675233c4310cbccbd19c9ca79.tar.gz
cpython-d17833d360a7e35675233c4310cbccbd19c9ca79.tar.bz2
Closes #16135: Removal of OS/2 support (distutils)
Diffstat (limited to 'Lib/distutils/command/bdist.py')
-rw-r--r--Lib/distutils/command/bdist.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py
index c5188eb..38b169a 100644
--- a/Lib/distutils/command/bdist.py
+++ b/Lib/distutils/command/bdist.py
@@ -52,8 +52,7 @@ class bdist(Command):
# This won't do in reality: will need to distinguish RPM-ish Linux,
# Debian-ish Linux, Solaris, FreeBSD, ..., Windows, Mac OS.
default_format = {'posix': 'gztar',
- 'nt': 'zip',
- 'os2': 'zip'}
+ 'nt': 'zip'}
# Establish the preferred order (for the --help-formats option).
format_commands = ['rpm', 'gztar', 'bztar', 'ztar', 'tar',