From: Serhiy Storchaka Date: Mon, 5 Dec 2016 22:17:45 +0000 (+0200) Subject: Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. X-Git-Tag: v3.6.0rc1~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a953dbb34b722dc16e98ef7103eb49b72a04e5e;p=thirdparty%2FPython%2Fcpython.git Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. --- 9a953dbb34b722dc16e98ef7103eb49b72a04e5e diff --cc Misc/NEWS index e97cd6e65777,1575c9ab53d9..a29e50af4108 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -2,57 -2,10 +2,62 @@@ Python News +++++++++++ -What's New in Python 3.5.3 release candidate 1? -=============================================== +What's New in Python 3.6.0 release candidate 1 +============================================== + +*Release date: XXXX-XX-XX* + +Core and Builtins +----------------- + +- Issue #23722: Rather than silently producing a class that doesn't support + zero-argument ``super()`` in methods, failing to pass the new + ``__classcell__`` namespace entry up to ``type.__new__`` now results in a + ``DeprecationWarning`` and a class that supports zero-argument ``super()``. + +- Issue #28797: Modifying the class __dict__ inside the __set_name__ method of + a descriptor that is used inside that class no longer prevents calling the + __set_name__ method of other descriptors. + +- Issue #28782: Fix a bug in the implementation ``yield from`` when checking + if the next instruction is YIELD_FROM. Regression introduced by WORDCODE + (issue #26647). + +Library +------- + +- Issue #27172: To assist with upgrades from 2.7, the previously documented + deprecation of ``inspect.getfullargspec()`` has been reversed. This decision + may be revisited again after the Python 2.7 branch is no longer officially + supported. + +- Issue #24142: Reading a corrupt config file left configparser in an + invalid state. Original patch by Florian Höch. + +- Issue #28843: Fix asyncio C Task to handle exceptions __traceback__. + ++C API ++----- ++ ++- Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. ++ +Documentation +------------- + +- Issue #23722: The data model reference and the porting section in the What's + New guide now cover the additional ``__classcell__`` handling needed for + custom metaclasses to fully support PEP 487 and zero-argument ``super()``. + +Tools/Demos +----------- + +- Issue #28023: Fix python-gdb.py didn't support new dict implementation. + + +What's New in Python 3.6.0 beta 4 +================================= -Release date: TBA +*Release date: 2016-11-21* Core and Builtins -----------------