Staging
v0.8.1
https://github.com/python/cpython
Revision 4718bf894103887262287293599f4188e2601d37 authored by Kurt B. Kaiser on 12 February 2008, 21:34:12 UTC, committed by Kurt B. Kaiser on 12 February 2008, 21:34:12 UTC
1 parent 53dbe39
Raw File
Tip revision: 4718bf894103887262287293599f4188e2601d37 authored by Kurt B. Kaiser on 12 February 2008, 21:34:12 UTC
Convert some custom sort comparison functions to equivalent key functions.
Tip revision: 4718bf8
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