diff options
author | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org> | 2016-09-06 23:58:32 (GMT) |
---|---|---|
committer | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) <greg@krypto.org> | 2016-09-06 23:58:32 (GMT) |
commit | c083476bded14e52c8498aabca4c07557c4f01ab (patch) | |
tree | 6756cdd1b87f13980198bbbdf7b575fd4a1cb938 | |
parent | 3cdaaafe2eaa8a3a34241d47e96573c36999d89d (diff) | |
parent | 653c8509191623951ca7d0091f470d3632034d84 (diff) | |
download | cpython-c083476bded14e52c8498aabca4c07557c4f01ab.zip cpython-c083476bded14e52c8498aabca4c07557c4f01ab.tar.gz cpython-c083476bded14e52c8498aabca4c07557c4f01ab.tar.bz2 |
Fixes issue26307: The profile-opt build now applys PGO to the built-in modules.
-rw-r--r-- | Makefile.pre.in | 2 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 04499dc..80f1191 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1593,7 +1593,7 @@ clean: pycremoval -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 {} ';' @@ -10,6 +10,8 @@ What's New in Python 3.6.0 beta 1 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 |