Staging
v0.8.1
https://github.com/python/cpython
Revision 35e8c4653455ceeac5b49b369b4c11be6096ea17 authored by Benjamin Peterson on 24 April 2008, 02:34:53 UTC, committed by Benjamin Peterson on 24 April 2008, 02:34:53 UTC
1 parent 3513358
Raw File
Tip revision: 35e8c4653455ceeac5b49b369b4c11be6096ea17 authored by Benjamin Peterson on 24 April 2008, 02:34:53 UTC
remove some old versionchanged and versionadded directives
Tip revision: 35e8c46
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