Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 43baef41fdf4b448d74fbd88ca738b1f4ddc6670 authored by Barry Warsaw on 21 November 2008, 01:18:21 UTC
Bump to 3.0rc3
Tip revision: 43baef4
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python30_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python30.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top