Staging
v0.5.1
https://github.com/python/cpython
Revision 381a9bce9762fe2db4a7951f689df4d06ba53f79 authored by Victor Stinner on 24 March 2015, 13:01:32 UTC, committed by Victor Stinner on 24 March 2015, 13:01:32 UTC
1 parent e0deff3
Raw File
Tip revision: 381a9bce9762fe2db4a7951f689df4d06ba53f79 authored by Victor Stinner on 24 March 2015, 13:01:32 UTC
Issue #23571: Update test_capi
Tip revision: 381a9bc
prepare_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    shift
    set HOST_PYTHON=python_d.exe
    if not exist python35_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python35.dll exit 1
  )
)
%HOST_PYTHON% prepare_ssl.py %1
back to top