Staging
v0.5.1
https://github.com/python/cpython
Revision 77ebfccd4d58040bb9a9ea5eba18e895ec201d34 authored by Senthil Kumaran on 20 August 2012, 20:43:59 UTC, committed by Senthil Kumaran on 20 August 2012, 20:43:59 UTC
1 parent df9c945
Raw File
Tip revision: 77ebfccd4d58040bb9a9ea5eba18e895ec201d34 authored by Senthil Kumaran on 20 August 2012, 20:43:59 UTC
Fix Issue 15743 - improve urllib tests by removing deprecated method usages. Patch by Jeff Knupp.
Tip revision: 77ebfcc
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