https://github.com/python/cpython
Raw File
Tip revision: 201c8f79450628241574fba940e08107178dc3a5 authored by Ned Deily on 02 July 2019, 20:25:39 UTC
3.6.9
Tip revision: 201c8f7
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