summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2012-06-23 21:20:45 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2012-06-23 21:20:45 (GMT)
commit9c56409d3353b8cd4cfc19e0467bbe23fd34fc92 (patch)
treeb4f9a6a7e8352479da1d36b9554c82011fa4839f /Misc
parent110ee34e4179727d2c8bf56cb655a89c561c30e0 (diff)
downloadcpython-9c56409d3353b8cd4cfc19e0467bbe23fd34fc92.zip
cpython-9c56409d3353b8cd4cfc19e0467bbe23fd34fc92.tar.gz
cpython-9c56409d3353b8cd4cfc19e0467bbe23fd34fc92.tar.bz2
Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 35e8ede..623a5a4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.3.0 Beta 1?
Core and Builtins
-----------------
+- Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber.
+
- Issue #15142: Fix reference leak when deallocating instances of types
created using PyType_FromSpec().