Staging
v0.8.1
https://github.com/python/cpython
Revision 6108bf5ed002925f2092deb025f336d8c2024299 authored by Éric Araujo on 04 October 2010, 23:52:37 UTC, committed by Éric Araujo on 04 October 2010, 23:52:37 UTC
1 parent 7017616
Raw File
Tip revision: 6108bf5ed002925f2092deb025f336d8c2024299 authored by Éric Araujo on 04 October 2010, 23:52:37 UTC
Fix interaction of custom translation classes and caching (#9042)
Tip revision: 6108bf5
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