From: R David Murray Date: Sat, 16 Jul 2016 01:30:13 +0000 (-0400) Subject: Merge: #27522: break unintended cycle in feedparser. X-Git-Tag: v3.6.0a4~167 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7266964968cf5e09992af3db02e7b85cb95bb50a;p=python Merge: #27522: break unintended cycle in feedparser. --- 7266964968cf5e09992af3db02e7b85cb95bb50a diff --cc Misc/NEWS index 7320af7891,75ca9b0133..2bd739088d --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -15,27 -15,6 +15,29 @@@ Core and Builtin - Issue #27514: Make having too many statically nested blocks a SyntaxError instead of SystemError. +Library +------- + ++- Issue #27522: Avoid an unintentional reference cycle in email.feedparser. ++ +- Issue 27512: Fix a segfault when os.fspath() called a an __fspath__() method + that raised an exception. Patch by Xiang Zhang. + +Tests +----- + +- Issue #27369: In test_pyexpat, avoid testing an error message detail that + changed in Expat 2.2.0. + + +What's New in Python 3.6.0 alpha 3 +================================== + +*Release date: 2016-07-11* + +Core and Builtins +----------------- + - Issue #27473: Fixed possible integer overflow in bytes and bytearray concatenations. Patch by Xiang Zhang.