Staging
v0.5.1
https://github.com/python/cpython
Revision cbd4d08880eac3c153b8b8390c608981a986fff1 authored by Tim Peters on 09 October 2013, 18:19:21 UTC, committed by Tim Peters on 09 October 2013, 18:19:21 UTC
1 parent 926099d
Raw File
Tip revision: cbd4d08880eac3c153b8b8390c608981a986fff1 authored by Tim Peters on 09 October 2013, 18:19:21 UTC
Issue 19158: a rare race in BoundedSemaphore could allow .release() too often.
Tip revision: cbd4d08
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