Staging
v0.8.1
https://github.com/python/cpython
Revision 682ea5f70e5450ffd5a50ef7f39d65c2faeb6b63 authored by Serhiy Storchaka on 03 March 2014, 19:17:17 UTC, committed by Serhiy Storchaka on 03 March 2014, 19:17:17 UTC
1 parent c186b23
Raw File
Tip revision: 682ea5f70e5450ffd5a50ef7f39d65c2faeb6b63 authored by Serhiy Storchaka on 03 March 2014, 19:17:17 UTC
Correct comments and improve failure reports in test_fileinput (closes #20501).
Tip revision: 682ea5f
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python33_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python33.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top