Staging
v0.5.1
https://github.com/python/cpython
Revision 5cb0c09fa6384990da0f2c47b92bd0ae8f87ff5d authored by Yury Selivanov on 21 November 2016, 22:47:41 UTC, committed by Yury Selivanov on 21 November 2016, 22:47:41 UTC
2 parent s bf87126 + dab0584
Raw File
Tip revision: 5cb0c09fa6384990da0f2c47b92bd0ae8f87ff5d authored by Yury Selivanov on 21 November 2016, 22:47:41 UTC
Merge 3.5 (issue #28652)
Tip revision: 5cb0c09
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