Staging
v0.8.1
https://github.com/python/cpython
Revision 907f0172e558a4003eb287303be862092eca6dc0 authored by Yury Selivanov on 18 February 2014, 17:21:57 UTC, committed by Yury Selivanov on 18 February 2014, 17:21:57 UTC
1 parent b057c52
Raw File
Tip revision: 907f0172e558a4003eb287303be862092eca6dc0 authored by Yury Selivanov on 18 February 2014, 17:21:57 UTC
Misc/NEWS: Add a news item for UNIX Sockets support in asyncio. Cleanup WS.
Tip revision: 907f017
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