diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-03-20 07:51:24 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-03-20 07:51:24 (GMT) |
commit | a69f0f94d3b8a1d97420660070e4694b561a4fb9 (patch) | |
tree | 9d329ac33f5b89a6ffab77f17418ea7150fb5790 /Lib/distutils | |
parent | e5280feba1db956bd984b9a13a6a5453ec618948 (diff) | |
parent | 69b1e261fc703106b44095796d78ba6aacbbdb63 (diff) | |
download | cpython-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.py | 2 |
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) |