]> granicus.if.org Git - python/commitdiff
Issue #27662: add missing Misc/NEWS entry.
authorMark Dickinson <dickinsm@gmail.com>
Sun, 21 Aug 2016 08:31:44 +0000 (09:31 +0100)
committerMark Dickinson <dickinsm@gmail.com>
Sun, 21 Aug 2016 08:31:44 +0000 (09:31 +0100)
Misc/NEWS

index 777de3563b95ca7b16a8497a8c470f9345ee8457..c352d8feae5861cc63775ddeab2f8ecdeb3f69c1 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.6.0 beta 1
 Core and Builtins
 -----------------
 
+- Issue #27662: Fix an overflow check in ``List_New``: the original code was
+  checking against ``Py_SIZE_MAX`` instead of the correct upper bound of
+  ``Py_SSIZE_T_MAX``. Patch by Xiang Zhang.
+
 - Issue #27782: Multi-phase extension module import now correctly allows the
   ``m_methods`` field to be used to add module level functions to instances
   of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang.