Staging
v0.5.1
https://github.com/python/cpython
Revision 5f8443eec9d54e1f74b69aa547e6810da6afa90b authored by Miss Islington (bot) on 04 June 2019, 19:07:03 UTC, committed by Victor Stinner on 04 June 2019, 19:07:03 UTC
test_venv.test_mutiprocessing() now explicitly calls pool.terminate()
to wait until the pool completes.
(cherry picked from commit bc6469f79ca13217b784fb47da7ec83484a3debe)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
1 parent 250b62a
Raw File
Tip revision: 5f8443eec9d54e1f74b69aa547e6810da6afa90b authored by Miss Islington (bot) on 04 June 2019, 19:07:03 UTC
bpo-37153: test_venv.test_mutiprocessing() calls pool.terminate() (GH-13816) (GH-13819)
Tip revision: 5f8443e
env.bat
@echo off
rem This script adds the latest available tools to the path for the current
rem command window. However, most builds of Python will ignore the version
rem of the tools on PATH and use PlatformToolset instead. Ideally, both sets of
rem tools should be the same version to avoid potential conflicts.
rem
rem To build Python with an earlier toolset, pass "/p:PlatformToolset=v100" (or
rem 'v110', 'v120' or 'v140') to the build script.

echo Build environments: x86, amd64, x86_amd64
echo.
set VSTOOLS=%VS140COMNTOOLS%
if "%VSTOOLS%"=="" set VSTOOLS=%VS120COMNTOOLS%
if "%VSTOOLS%"=="" set VSTOOLS=%VS110COMNTOOLS%
if "%VSTOOLS%"=="" set VSTOOLS=%VS100COMNTOOLS%
call "%VSTOOLS%..\..\VC\vcvarsall.bat" %*
back to top