Staging
v0.5.1
https://github.com/python/cpython
Revision 3c9f541ef898207a907ad396a3e015255a2794a4 authored by Antoine Pitrou on 13 September 2008, 20:30:30 UTC, committed by Antoine Pitrou on 13 September 2008, 20:30:30 UTC
1 parent d51e07f
Raw File
Tip revision: 3c9f541ef898207a907ad396a3e015255a2794a4 authored by Antoine Pitrou on 13 September 2008, 20:30:30 UTC
Issue #3850: Misc/find_recursionlimit.py was broken.
Tip revision: 3c9f541
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