Staging
v0.5.1
https://github.com/python/cpython
Revision e02f6c20ff9d017a8d1c8b27d96cbfc205185f06 authored by Robert Collins on 22 July 2015, 18:37:26 UTC, committed by Robert Collins on 22 July 2015, 18:37:26 UTC
1 parent 689b55c
Raw File
Tip revision: e02f6c20ff9d017a8d1c8b27d96cbfc205185f06 authored by Robert Collins on 22 July 2015, 18:37:26 UTC
Issue #22153: Improve unittest docs. Patch from Martin Panter and evilzero.
Tip revision: e02f6c2
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python34_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python34.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top