mirror of
https://github.com/python/cpython.git
synced 2025-10-09 08:31:26 +00:00
bpo-38092: Reduce overhead when using multiprocessing in a Windows virtual environment (GH-16098)
https://bugs.python.org/issue38092
This commit is contained in:
parent
5b9ff7a0dc
commit
f2b7556ef8
3 changed files with 3 additions and 2 deletions
|
@ -36,7 +36,7 @@ else:
|
|||
if WINSERVICE:
|
||||
_python_exe = os.path.join(sys.exec_prefix, 'python.exe')
|
||||
else:
|
||||
_python_exe = sys.executable
|
||||
_python_exe = sys._base_executable
|
||||
|
||||
def set_executable(exe):
|
||||
global _python_exe
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue