Skip to content

Commit 6990d1b

Browse files
ameilyzooba
authored andcommitted
bpo-38092: Reduce overhead when using multiprocessing in a Windows virtual environment (GH-16098)
1 parent 5a49cca commit 6990d1b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Lib/multiprocessing/popen_spawn_win32.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def __init__(self, process_obj):
6969
try:
7070
hp, ht, pid, tid = _winapi.CreateProcess(
7171
python_exe, cmd,
72-
env, None, False, 0, None, None, None)
72+
None, None, False, 0, env, None, None)
7373
_winapi.CloseHandle(ht)
7474
except:
7575
_winapi.CloseHandle(rhandle)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Reduce overhead when using multiprocessing in a Windows virtual environment

0 commit comments

Comments
 (0)