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
python3.mak
$(OutDir)python3.dll:	python3.def $(OutDir)python34stub.lib
	cl /LD /Fe$(OutDir)python3.dll python3dll.c python3.def $(OutDir)python34stub.lib

$(OutDir)python34stub.lib:	python34stub.def
	lib /def:python34stub.def /out:$(OutDir)python34stub.lib /MACHINE:$(MACHINE)

clean:
	IF EXIST $(OutDir)python3.dll del $(OutDir)python3.dll
	IF EXIST $(OutDir)python3.lib del $(OutDir)python3.lib
	IF EXIST $(OutDir)python34stub.lib del $(OutDir)python34stub.lib
	IF EXIST $(OutDir)python3.exp del $(OutDir)python3.exp
	IF EXIST $(OutDir)python34stub.exp del $(OutDir)python34stub.exp

rebuild: clean $(OutDir)python3.dll
back to top