Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 790bd6d

Browse files
committed
Issue #20978: Remove last part of OS/2 support in distutils
1 parent deec16b commit 790bd6d

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

Lib/distutils/spawn.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ def spawn(cmd, search_path=1, verbose=0, dry_run=0):
3636
_spawn_posix(cmd, search_path, dry_run=dry_run)
3737
elif os.name == 'nt':
3838
_spawn_nt(cmd, search_path, dry_run=dry_run)
39-
elif os.name == 'os2':
40-
_spawn_os2(cmd, search_path, dry_run=dry_run)
4139
else:
4240
raise DistutilsPlatformError(
4341
"don't know how to spawn programs on platform '%s'" % os.name)

0 commit comments

Comments
 (0)