Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: d200e0c07208df0fec02b25279e4ca1ba3153947 authored by Larry Hastings on 31 May 2015, 00:00:48 UTC
Version bump for Python 3.5.0b2.
Tip revision: d200e0c
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% prepare_ssl.py %1
back to top