Staging
v0.5.1
https://github.com/python/cpython
Revision 081a38d6783a301f7486585cff88f106da52dd71 authored by Benjamin Peterson on 18 March 2010, 23:01:29 UTC, committed by Benjamin Peterson on 18 March 2010, 23:01:29 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r79075 | benjamin.peterson | 2010-03-18 17:58:19 -0500 (Thu, 18 Mar 2010) | 9 lines

  Merged revisions 79073 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r79073 | benjamin.peterson | 2010-03-18 17:55:46 -0500 (Thu, 18 Mar 2010) | 1 line

    reignore bad_coding
  ........
................
1 parent 5ff5336
Raw File
Tip revision: 081a38d6783a301f7486585cff88f106da52dd71 authored by Benjamin Peterson on 18 March 2010, 23:01:29 UTC
Merged revisions 79075 via svnmerge from
Tip revision: 081a38d
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