Staging
v0.5.1
https://github.com/python/cpython
Revision 4a3c7c78fb2a4d8bd40590b285720c6dafab9000 authored by Mark Dickinson on 09 January 2008, 01:02:07 UTC, committed by Mark Dickinson on 09 January 2008, 01:02:07 UTC
1 parent d77fedc
Raw File
Tip revision: 4a3c7c78fb2a4d8bd40590b285720c6dafab9000 authored by Mark Dickinson on 09 January 2008, 01:02:07 UTC
Add Decimal backport to Misc/NEWS
Tip revision: 4a3c7c7
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
  ) ELSE (
    set HOST_PYTHON=python.exe
  )
)
%HOST_PYTHON% build_ssl.py %1 %2

back to top