diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-03-20 07:50:33 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-03-20 07:50:33 (GMT) |
commit | 790bd6dd1322db0eba7635e86cfe3e54f6b04031 (patch) | |
tree | 6efd3f0afa553176a94403f6ec335cf6229a48bc /Lib/distutils/spawn.py | |
parent | deec16be07063a346650436f30d7aeb47516382b (diff) | |
download | cpython-790bd6dd1322db0eba7635e86cfe3e54f6b04031.zip cpython-790bd6dd1322db0eba7635e86cfe3e54f6b04031.tar.gz cpython-790bd6dd1322db0eba7635e86cfe3e54f6b04031.tar.bz2 |
Issue #20978: Remove last part of OS/2 support in distutils
Diffstat (limited to 'Lib/distutils/spawn.py')
-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) |