mirror of https://github.com/python/cpython
Issue #20978: Remove last part of OS/2 support in distutils
This commit is contained in:
parent
deec16be07
commit
790bd6dd13
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue