Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deec16b commit 790bd6dCopy full SHA for 790bd6d
1 file changed
Lib/distutils/spawn.py
@@ -36,8 +36,6 @@ def spawn(cmd, search_path=1, verbose=0, dry_run=0):
36
_spawn_posix(cmd, search_path, dry_run=dry_run)
37
elif os.name == 'nt':
38
_spawn_nt(cmd, search_path, dry_run=dry_run)
39
- elif os.name == 'os2':
40
- _spawn_os2(cmd, search_path, dry_run=dry_run)
41
else:
42
raise DistutilsPlatformError(
43
"don't know how to spawn programs on platform '%s'" % os.name)
0 commit comments