summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-08-20 12:15:03 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-08-20 12:15:03 (GMT)
commita370fcf3b2211242c888558237557eb4895391d0 (patch)
tree4c52a9237332bc7b3e1e9d0eba8e84c878acd210 /Misc
parent0c17d0d96e9684e29a731227452355da79b14b5b (diff)
downloadcpython-a370fcf3b2211242c888558237557eb4895391d0.zip
cpython-a370fcf3b2211242c888558237557eb4895391d0.tar.gz
cpython-a370fcf3b2211242c888558237557eb4895391d0.tar.bz2
Issue #12791: Break reference cycles early when a generator exits with an exception.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a4251e3..f8c135f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
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.