From: Serhiy Storchaka Date: Mon, 21 Dec 2015 09:11:12 +0000 (+0200) Subject: Issue #25902: Fixed various refcount issues in ElementTree iteration. X-Git-Tag: v3.6.0a1~877 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=47a9d59d5115fc2d9c29035d9ae4418eb1800f44;p=python Issue #25902: Fixed various refcount issues in ElementTree iteration. --- 47a9d59d5115fc2d9c29035d9ae4418eb1800f44 diff --cc Misc/NEWS index 01cf6729b5,90adba8eb8..ad37eb7874 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -115,14 -28,8 +115,16 @@@ Core and Builtin Library ------- + - Issue #25902: Fixed various refcount issues in ElementTree iteration. + +- Issue #22227: The TarFile iterator is reimplemented using generator. + This implementation is simpler that using class. + +- Issue #25638: Optimized ElementTree.iterparse(); it is now 2x faster. + Optimized ElementTree parsing; it is now 10% faster. + +- Issue #25761: Improved detecting errors in broken pickle data. + - Issue #25717: Restore the previous behaviour of tolerating most fstat() errors when opening files. This was a regression in 3.5a1, and stopped anonymous temporary files from working in special cases.