changeset: 103175:7d9cd4a0d488 branch: 3.5 parent: 103166:91d3022b3f03 user: Gregory P. Smith [Google Inc.] date: Tue Sep 06 23:56:54 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 91d3022b3f03 -r 7d9cd4a0d488 Makefile.pre.in --- a/Makefile.pre.in Wed Sep 07 02:04:34 2016 +0300 +++ b/Makefile.pre.in Tue Sep 06 23:56:54 2016 +0000 @@ -1595,7 +1595,7 @@ -rm -f pybuilddir.txt -rm -f Lib/lib2to3/*Grammar*.pickle -rm -f Programs/_testembed Programs/_freeze_importlib - -rm -rf build + -find build -type f -a ! -name '*.gc??' -exec rm -f {} ';' profile-removal: find . -name '*.gc??' -exec rm -f {} ';' diff -r 91d3022b3f03 -r 7d9cd4a0d488 Misc/NEWS --- a/Misc/NEWS Wed Sep 07 02:04:34 2016 +0300 +++ b/Misc/NEWS Tue Sep 06 23:56:54 2016 +0000 @@ -10,6 +10,8 @@ Core and Builtins ----------------- +- Issue #26307: The profile-opt build now applys PGO to the built-in modules. + - Issue #27812: Properly clear out a generator's frame's backreference to the generator to prevent crashes in frame.clear().