Issue #20978: Remove last part of OS/2 support in distutils

This commit is contained in:
Victor Stinner 2014-03-20 08:50:33 +01:00
parent deec16be07
commit 790bd6dd13
1 changed files with 0 additions and 2 deletions

View File

@ -36,8 +36,6 @@ def spawn(cmd, search_path=1, verbose=0, dry_run=0):
_spawn_posix(cmd, search_path, dry_run=dry_run) _spawn_posix(cmd, search_path, dry_run=dry_run)
elif os.name == 'nt': elif os.name == 'nt':
_spawn_nt(cmd, search_path, dry_run=dry_run) _spawn_nt(cmd, search_path, dry_run=dry_run)
elif os.name == 'os2':
_spawn_os2(cmd, search_path, dry_run=dry_run)
else: else:
raise DistutilsPlatformError( raise DistutilsPlatformError(
"don't know how to spawn programs on platform '%s'" % os.name) "don't know how to spawn programs on platform '%s'" % os.name)