diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-13 16:59:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-13 16:59:11 (GMT) |
commit | 436b429ade87b10879b3f944e99a515478e86e5e (patch) | |
tree | 007396782ba2e35d699465a5ea3f481a34bc6cbe /Lib/multiprocessing/popen_spawn_win32.py | |
parent | 83c21fdc36070f9fa3eb3b68181630e2cc6480fe (diff) | |
download | cpython-436b429ade87b10879b3f944e99a515478e86e5e.zip cpython-436b429ade87b10879b3f944e99a515478e86e5e.tar.gz cpython-436b429ade87b10879b3f944e99a515478e86e5e.tar.bz2 |
bpo-38092: Reduce overhead when using multiprocessing in a Windows virtual environment (GH-16098)
https://bugs.python.org/issue38092
(cherry picked from commit f2b7556ef851ac85e7cbf189d1b29fdeb9539b88)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'Lib/multiprocessing/popen_spawn_win32.py')
-rw-r--r-- | Lib/multiprocessing/popen_spawn_win32.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/popen_spawn_win32.py b/Lib/multiprocessing/popen_spawn_win32.py index ea9c555..9c4098d 100644 --- a/Lib/multiprocessing/popen_spawn_win32.py +++ b/Lib/multiprocessing/popen_spawn_win32.py @@ -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) |