https://github.com/python/cpython
Raw File
Tip revision: 6420088b924a23e5de40be6623d2a80b12f71d97 authored by Mariatta Wijaya on 15 February 2017, 03:54:38 UTC
bpo-29521 update Misc/ACKS
Tip revision: 6420088
prepare_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if "%1" EQU "Debug" (
    shift
    set HOST_PYTHON=python_d.exe
    if not exist python37_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python37.dll exit 1
  )
)
%HOST_PYTHON% "%~dp0prepare_ssl.py" %1
back to top