Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 03a27822d1498ddd7c3ac03b5c1ca92c09d19c3e authored by Benjamin Peterson on 30 May 2009, 15:41:59 UTC
update pydoc topics
Tip revision: 03a2782
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python31_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python31.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top