summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-06-23 14:42:38 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2012-06-23 14:42:38 +0200
commit99cc629969cd008272c471a0f7bdd2de04cf67fa (patch)
tree9d826f145b887a2da66678e36888465d749c0f4f /Misc
parentb8dc3ab08b6dfb089f37f417c9d507194d489882 (diff)
downloadcpython-git-99cc629969cd008272c471a0f7bdd2de04cf67fa.tar.gz
Issue #15142: Fix reference leak when deallocating instances of types created using PyType_FromSpec().
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 789f7f78bb..6f59110039 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #15142: Fix reference leak when deallocating instances of types
+ created using PyType_FromSpec().
+
- Issue #10053: Don't close FDs when FileIO.__init__ fails. Loosely based on
the work by Hirokazu Yamamoto.