Staging
v0.5.1
https://github.com/python/cpython
Revision 441581a79ff9666380bea83ad26895f0d09b6695 authored by Steven D'Aprano on 11 May 2016, 03:01:42 UTC, committed by Steven D'Aprano on 11 May 2016, 03:01:42 UTC
1 parent 6494449
Raw File
Tip revision: 441581a79ff9666380bea83ad26895f0d09b6695 authored by Steven D'Aprano on 11 May 2016, 03:01:42 UTC
Update NEWS.
Tip revision: 441581a
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