Staging
v0.5.1
https://github.com/python/cpython
Revision 1dd75a64aaf8d69e851b125751deaa446de4eef1 authored by Antoine Pitrou on 25 June 2012, 16:08:54 UTC, committed by Antoine Pitrou on 25 June 2012, 16:08:54 UTC
1 parent 62ba042
Raw File
Tip revision: 1dd75a64aaf8d69e851b125751deaa446de4eef1 authored by Antoine Pitrou on 25 June 2012, 16:08:54 UTC
Backport test_nntplib fixes from default.
Tip revision: 1dd75a6
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