changeset: 103176:bdc7292cf87e parent: 103174:8b56a2c71250 parent: 103175:7d9cd4a0d488 user: Gregory P. Smith [Google Inc.] date: Tue Sep 06 23:58:32 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 8b56a2c71250 -r bdc7292cf87e Makefile.pre.in --- a/Makefile.pre.in Tue Sep 06 16:46:22 2016 -0700 +++ b/Makefile.pre.in Tue Sep 06 23:58:32 2016 +0000 @@ -1593,7 +1593,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 8b56a2c71250 -r bdc7292cf87e Misc/NEWS --- a/Misc/NEWS Tue Sep 06 16:46:22 2016 -0700 +++ b/Misc/NEWS Tue Sep 06 23:58:32 2016 +0000 @@ -10,6 +10,8 @@ Core and Builtins ----------------- +- Issue #26307: The profile-opt build now applys PGO to the built-in modules. + - Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. - Issue #17884: Python now requires systems with inttypes.h and stdint.h