[Python-checkins] cpython (3.6): Issue #29239: Fix --enable-optimizations bug number

martin.panter python-checkins at python.org
Wed Jan 11 07:26:22 EST 2017


https://hg.python.org/cpython/rev/114b03fa4c04
changeset:   106089:114b03fa4c04
branch:      3.6
user:        Martin Panter <vadmium+py at gmail.com>
date:        Wed Jan 11 11:56:22 2017 +0000
summary:
  Issue #29239: Fix --enable-optimizations bug number

files:
  Doc/whatsnew/3.6.rst |  2 +-
  Misc/NEWS            |  2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -1821,7 +1821,7 @@
 
 * The ``--enable-optimizations`` configure flag has been added. Turning it on
   will activate expensive optimizations like PGO.
-  (Original patch by Alecsandru Patrascu of Intel in :issue:`26539`.)
+  (Original patch by Alecsandru Patrascu of Intel in :issue:`26359`.)
 
 * The :term:`GIL <global interpreter lock>` must now be held when allocator
   functions of :c:data:`PYMEM_DOMAIN_OBJ` (ex: :c:func:`PyObject_Malloc`) and
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1233,7 +1233,7 @@
 
 - Issue #26307: The profile-opt build now applies PGO to the built-in modules.
 
-- Issue #26539: Add the --with-optimizations flag to turn on LTO and PGO build
+- Issue #26359: Add the --with-optimizations flag to turn on LTO and PGO build
   support when available.
 
 - Issue #27917: Set platform triplets for Android builds.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list