Staging
v0.5.1
https://github.com/python/cpython
Revision 429b59ec6990dab19d5a0e0a91f55b5f0e850cf6 authored by Serhiy Storchaka on 14 May 2014, 18:48:17 UTC, committed by Serhiy Storchaka on 14 May 2014, 18:48:17 UTC
with ignore case.  Original patch by Matthew Barnett.
1 parent 946cfc3
Raw File
Tip revision: 429b59ec6990dab19d5a0e0a91f55b5f0e850cf6 authored by Serhiy Storchaka on 14 May 2014, 18:48:17 UTC
Issue #20998: Fixed re.fullmatch() of repeated single character pattern
Tip revision: 429b59e
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