From: Victor Stinner Date: Thu, 20 Mar 2014 07:50:33 +0000 (+0100) Subject: Issue #20978: Remove last part of OS/2 support in distutils X-Git-Tag: v3.4.1rc1~214 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=790bd6dd1322db0eba7635e86cfe3e54f6b04031;p=python Issue #20978: Remove last part of OS/2 support in distutils --- 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)