Kaydet (Commit) 164a3c82 authored tarafından Mark Dickinson's avatar Mark Dickinson

Issue #27662: add missing Misc/NEWS entry.

üst 5d13238f
...@@ -10,6 +10,10 @@ What's New in Python 3.6.0 beta 1 ...@@ -10,6 +10,10 @@ What's New in Python 3.6.0 beta 1
Core and Builtins 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 - Issue #27782: Multi-phase extension module import now correctly allows the
``m_methods`` field to be used to add module level functions to instances ``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. of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment