summaryrefslogtreecommitdiff
path: root/Lib/distutils
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-03-20 08:50:33 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-03-20 08:50:33 +0100
commit790bd6dd1322db0eba7635e86cfe3e54f6b04031 (patch)
tree6efd3f0afa553176a94403f6ec335cf6229a48bc /Lib/distutils
parentdeec16be07063a346650436f30d7aeb47516382b (diff)
downloadcpython-git-790bd6dd1322db0eba7635e86cfe3e54f6b04031.tar.gz
Issue #20978: Remove last part of OS/2 support in distutils
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/spawn.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/distutils/spawn.py b/Lib/distutils/spawn.py
index d9cf950a9b..22e87e8fdb 100644
--- a/Lib/distutils/spawn.py
+++ b/Lib/distutils/spawn.py
@@ -36,8 +36,6 @@ def spawn(cmd, search_path=1, verbose=0, dry_run=0):
_spawn_posix(cmd, search_path, dry_run=dry_run)
elif os.name == 'nt':
_spawn_nt(cmd, search_path, dry_run=dry_run)
- elif os.name == 'os2':
- _spawn_os2(cmd, search_path, dry_run=dry_run)
else:
raise DistutilsPlatformError(
"don't know how to spawn programs on platform '%s'" % os.name)