Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 627d0c61ac96009450e3794a2401f244e56fcb79 authored by Larry Hastings on 02 August 2018, 09:19:12 UTC
Version bump for 3.5.6 final.
Tip revision: 627d0c6
prepare_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if "%1" EQU "Debug" (
    shift
    set HOST_PYTHON=python_d.exe
    if not exist python35_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python35.dll exit 1
  )
)
%HOST_PYTHON% "%~dp0prepare_ssl.py" %1
back to top