Staging
v0.5.1
https://github.com/python/cpython
Revision 28540183c95c14e13d36e016c5fe92925ab3fccf authored by Martin Panter on 21 November 2016, 04:10:45 UTC, committed by Martin Panter on 21 November 2016, 04:10:45 UTC
1 parent 99b6f28
Raw File
Tip revision: 28540183c95c14e13d36e016c5fe92925ab3fccf authored by Martin Panter on 21 November 2016, 04:10:45 UTC
Another en → em dash fix for 3.6
Tip revision: 2854018
prepare_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if "%1" EQU "Debug" (
    shift
    set HOST_PYTHON=python_d.exe
    if not exist python36_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python36.dll exit 1
  )
)
%HOST_PYTHON% "%~dp0prepare_ssl.py" %1
back to top