Staging
v0.5.1
https://github.com/python/cpython
Revision 323c40d48c4c1661a18336af16c59bc279fda571 authored by Benjamin Peterson on 06 May 2008, 22:31:52 UTC, committed by Benjamin Peterson on 06 May 2008, 22:31:52 UTC
1 parent d295032
Raw File
Tip revision: 323c40d48c4c1661a18336af16c59bc279fda571 authored by Benjamin Peterson on 06 May 2008, 22:31:52 UTC
Make the Python implementation of warnings compatible with the C implementation regarding non-callable showwarning
Tip revision: 323c40d
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