changeset: 103193:75dae0b2ccb3 branch: 2.7 parent: 103189:ec537f9f468f user: Gregory P. Smith [Google Inc.] date: Wed Sep 07 01:05:59 2016 +0000 files: Makefile.pre.in Misc/NEWS description: Fixes issue26307: The profile-opt build now applys PGO to the built-in modules. diff -r ec537f9f468f -r 75dae0b2ccb3 Makefile.pre.in --- a/Makefile.pre.in Tue Sep 06 17:58:25 2016 -0700 +++ b/Makefile.pre.in Wed Sep 07 01:05:59 2016 +0000 @@ -1393,7 +1393,7 @@ 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 -r ec537f9f468f -r 75dae0b2ccb3 Misc/NEWS --- a/Misc/NEWS Tue Sep 06 17:58:25 2016 -0700 +++ b/Misc/NEWS Wed Sep 07 01:05:59 2016 +0000 @@ -10,6 +10,8 @@ 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.