Staging
v0.5.1
https://github.com/python/cpython
Revision b383e806b623503eb0713ba1d8b5469e8fe7e86d authored by Barry Warsaw on 22 February 2012, 22:26:50 UTC, committed by Barry Warsaw on 22 February 2012, 22:26:50 UTC
    http://hg.python.org/cpython/rev/48705250232c
    changeset:   75187:48705250232c
    branch:      2.7
    parent:      75184:9a1d902714ae
    user:        Antoine Pitrou <solipsis@pitrou.net>
    date:        Wed Feb 22 22:16:25 2012 +0100
1 parent 56fd661
Raw File
Tip revision: b383e806b623503eb0713ba1d8b5469e8fe7e86d authored by Barry Warsaw on 22 February 2012, 22:26:50 UTC
Back port from 2.7:
Tip revision: b383e80
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python26_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python26.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top