From: Antoine Pitrou Date: Sat, 20 Aug 2011 12:18:25 +0000 (+0200) Subject: Issue #12791: Break reference cycles early when a generator exits with an exception. X-Git-Tag: v3.3.0a1~1666 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8fd544ffa926a479c8d80e245e3daf12197aa7a2;p=thirdparty%2FPython%2Fcpython.git Issue #12791: Break reference cycles early when a generator exits with an exception. --- 8fd544ffa926a479c8d80e245e3daf12197aa7a2 diff --cc Misc/NEWS index 36c9b8b181d5,f8c135f66331..7dc106afee10 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,13 -10,28 +10,16 @@@ What's New in Python 3.3 Alpha 1 Core and Builtins ----------------- + - Issue #12791: Break reference cycles early when a generator exits with + an exception. + -- Issue #12266: Fix str.capitalize() to correctly uppercase/lowercase - titlecased and cased non-letter characters. - -Library -------- - -- Issue #12326: sys.platform is now always 'linux2' on Linux, even if Python - is compiled on Linux 3. - -- Issue #12650: Fix a race condition where a subprocess.Popen could leak - resources (FD/zombie) when killed at the wrong time. +- Issue #12773: Make __doc__ mutable on user-defined classes. -What's New in Python 3.2.2? -=========================== +- Issue #12766: Raise an ValueError when creating a class with a class variable + that conflicts with a name in __slots__. -*Release date: XX-XXX-2011* - -Core and Builtins ------------------ +- Issue #12266: Fix str.capitalize() to correctly uppercase/lowercase + titlecased and cased non-letter characters. - Issue #12732: In narrow unicode builds, allow Unicode identifiers which fall outside the BMP.