Staging
v0.5.1
https://github.com/python/cpython
Revision 4a22b5dee77b6a3439e4a09362586c390bbdef02 authored by Christian Heimes on 25 November 2007, 09:39:14 UTC, committed by Christian Heimes on 25 November 2007, 09:39:14 UTC
Remove unbound method objects
1 parent 91c7730
Raw File
Tip revision: 4a22b5dee77b6a3439e4a09362586c390bbdef02 authored by Christian Heimes on 25 November 2007, 09:39:14 UTC
Patch from Georg Brandl and me for #1493
Tip revision: 4a22b5d
build_ssl.bat
if "%1" == "ReleaseAMD64" call "%MSSdk%\SetEnv" /XP64 /RETAIL

@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

back to top