Staging
v0.5.1
https://github.com/python/cpython
Revision 72ed07843a35be60e2c5e1d9675b9c97c5cb402d authored by Vinay Sajip on 01 September 2008, 14:30:10 UTC, committed by Vinay Sajip on 01 September 2008, 14:30:10 UTC
1 parent f7dd75f
Raw File
Tip revision: 72ed07843a35be60e2c5e1d9675b9c97c5cb402d authored by Vinay Sajip on 01 September 2008, 14:30:10 UTC
logging: fixed lack of use of encoding attribute specified on a stream.
Tip revision: 72ed078
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python30_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python30.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top