summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-03-20 07:51:24 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-03-20 07:51:24 (GMT)
commita69f0f94d3b8a1d97420660070e4694b561a4fb9 (patch)
tree9d329ac33f5b89a6ffab77f17418ea7150fb5790 /Lib/distutils
parente5280feba1db956bd984b9a13a6a5453ec618948 (diff)
parent69b1e261fc703106b44095796d78ba6aacbbdb63 (diff)
downloadcpython-a69f0f94d3b8a1d97420660070e4694b561a4fb9.zip
cpython-a69f0f94d3b8a1d97420660070e4694b561a4fb9.tar.gz
cpython-a69f0f94d3b8a1d97420660070e4694b561a4fb9.tar.bz2
(Merge 3.4) Issue #20978: pyflakes: fix undefined names; 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 d9cf950..22e87e8 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)