From: Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) Date: Wed, 7 Sep 2016 01:05:59 +0000 (+0000) Subject: Fixes issue26307: The profile-opt build now applys PGO to the built-in modules. X-Git-Tag: v2.7.13rc1~165 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93d1a7051f8c97151a17fe50eb6e5beea91b790f;p=python Fixes issue26307: The profile-opt build now applys PGO to the built-in modules. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 3aafca892a..4840775827 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1393,7 +1393,7 @@ clean: pycremoval find build -name 'fficonfig.h' -exec rm -f {} ';' || true find build -name 'fficonfig.py' -exec rm -f {} ';' || true -rm -f Lib/lib2to3/*Grammar*.pickle - -rm -rf build + -find build -type f -a ! -name '*.gc??' -exec rm -f {} ';' profile-removal: find . -name '*.gc??' -exec rm -f {} ';' diff --git a/Misc/NEWS b/Misc/NEWS index 1eae2bb0b2..423f5db90d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -10,6 +10,8 @@ What's New in Python 2.7.13? Core and Builtins ----------------- +- Issue #26307: The profile-opt build now applys PGO to the built-in modules. + - Issue #27870: A left shift of zero by a large integer no longer attempts to allocate large amounts of memory.