summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-06-23 12:45:21 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-06-23 12:45:21 (GMT)
commita4db02c7a38c5669b5678f1e972d8b9c6d3a2238 (patch)
treecb73e592c63fd9fe7eb6d5a7ba851763a936cfec /Misc
parentedc601855d3ed2494164d48dd12d2d222d23113f (diff)
parent99cc629969cd008272c471a0f7bdd2de04cf67fa (diff)
downloadcpython-a4db02c7a38c5669b5678f1e972d8b9c6d3a2238.zip
cpython-a4db02c7a38c5669b5678f1e972d8b9c6d3a2238.tar.gz
cpython-a4db02c7a38c5669b5678f1e972d8b9c6d3a2238.tar.bz2
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 f768602..0325058 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 1?
Core and Builtins
-----------------
+- Issue #15142: Fix reference leak when deallocating instances of types
+ created using PyType_FromSpec().
+
- Issue #15042: Add PyState_AddModule and PyState_RemoveModule. Add version
guard for Py_LIMITED_API additions. Patch by Robin Schreiber.