bpo-38092: Reduce overhead when using multiprocessing in a Windows virtual environment (GH-16098)

https://bugs.python.org/issue38092
This commit is contained in:
Steve Dower 2019-09-13 17:40:19 +01:00 committed by Miss Islington (bot)
parent 5b9ff7a0dc
commit f2b7556ef8
3 changed files with 3 additions and 2 deletions

View file

@ -72,7 +72,7 @@ class Popen(object):
try:
hp, ht, pid, tid = _winapi.CreateProcess(
python_exe, cmd,
env, None, False, 0, None, None, None)
None, None, False, 0, env, None, None)
_winapi.CloseHandle(ht)
except:
_winapi.CloseHandle(rhandle)