Staging
v0.5.1
https://github.com/python/cpython
Revision 5d9ae8b9df8371dd65514e0d60b561fd37056986 authored by Miss Islington (bot) on 09 January 2019, 14:46:28 UTC, committed by Senthil Kumaran on 09 January 2019, 14:46:28 UTC
(cherry picked from commit cbb16459934eaf29c7c7d362939cd05550b2f21f)

Co-authored-by: Sanyam Khurana <8039608+CuriousLearner@users.noreply.github.com>
1 parent 3e0144a
Raw File
Tip revision: 5d9ae8b9df8371dd65514e0d60b561fd37056986 authored by Miss Islington (bot) on 09 January 2019, 14:46:28 UTC
bpo-24746: Avoid stripping trailing whitespace in doctest fancy diff (GH-10639) (#11477)
Tip revision: 5d9ae8b
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