Staging
v0.5.1
https://github.com/python/cpython
Revision bf88ffba5edf780e12a64db9cb929216c19f6cfa authored by Guido van Rossum on 12 May 2014, 17:04:37 UTC, committed by Guido van Rossum on 12 May 2014, 17:04:37 UTC
1 parent a869fd3
Raw File
Tip revision: bf88ffba5edf780e12a64db9cb929216c19f6cfa authored by Guido van Rossum on 12 May 2014, 17:04:37 UTC
asyncio: Fix upstream issue 168: StreamReader.read(-1) from pipe may hang if data exceeds buffer limit.
Tip revision: bf88ffb
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