fix subprocess on Windows (#391)

This commit is contained in:
Benjamin Peterson 2017-03-02 00:03:41 -08:00 committed by GitHub
parent afbb5d1cbd
commit cb90f26122

View file

@ -988,7 +988,7 @@ def _execute_child(self, args, executable, preexec_fn, close_fds,
int(not close_fds),
creationflags,
env,
os.fspath(cwd),
os.fspath(cwd) if cwd is not None else None,
startupinfo)
finally:
# Child is launched. Close the parent's copy of those pipe