diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2016-08-21 08:31:44 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2016-08-21 08:31:44 (GMT) |
commit | 164a3c822dd1da2218d7c262fdd10d092a77c422 (patch) | |
tree | e11d901a30a3c4fef554232e6806c14b1fff12c8 /Misc/NEWS | |
parent | 5d13238f6ef4639948bb80b8d2e3bbc9a65de9d8 (diff) | |
download | cpython-164a3c822dd1da2218d7c262fdd10d092a77c422.zip cpython-164a3c822dd1da2218d7c262fdd10d092a77c422.tar.gz cpython-164a3c822dd1da2218d7c262fdd10d092a77c422.tar.bz2 |
Issue #27662: add missing Misc/NEWS entry.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |