Staging
v0.5.1
https://github.com/python/cpython
Revision 7157d339296282bf3c2ae896e82f0a25e7c62ced authored by Ezio Melotti on 22 November 2010, 13:05:22 UTC, committed by Ezio Melotti on 22 November 2010, 13:05:22 UTC
........
  r86690 | ezio.melotti | 2010-11-22 14:56:58 +0200 (Mon, 22 Nov 2010) | 1 line

  #9424: add a DeprecationWarning for assertEquals, assertNotEquals, assertAlmostEquals, assertNotAlmostEquals, and assert_
........
1 parent 3629765
Raw File
Tip revision: 7157d339296282bf3c2ae896e82f0a25e7c62ced authored by Ezio Melotti on 22 November 2010, 13:05:22 UTC
Blocked revisions 86690 via svnmerge
Tip revision: 7157d33
build_ssl.bat
@echo off
if not defined HOST_PYTHON (
  if %1 EQU Debug (
    set HOST_PYTHON=python_d.exe
    if not exist python31_d.dll exit 1
  ) ELSE (
    set HOST_PYTHON=python.exe
    if not exist python31.dll exit 1
  )
)
%HOST_PYTHON% build_ssl.py %1 %2 %3

back to top