summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-05-23 11:17:21 (GMT)
committerGeorg Brandl <georg@python.org>2006-05-23 11:17:21 (GMT)
commit658d5133285ccf32184ad8cc2899dfe3440aea2d (patch)
treee46bb429b43802a601441338a2d3d194a0bbc43b /Misc
parentda89b99533e4239344a4e31067e26325ae2b4c1a (diff)
downloadcpython-658d5133285ccf32184ad8cc2899dfe3440aea2d.zip
cpython-658d5133285ccf32184ad8cc2899dfe3440aea2d.tar.gz
cpython-658d5133285ccf32184ad8cc2899dfe3440aea2d.tar.bz2
PyErr_NewException now accepts a tuple of base classes as its
"base" parameter.
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 445110f..cfb1d15 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5 alpha 3?
Core and builtins
-----------------
+- PyErr_NewException now accepts a tuple of base classes as its
+ "base" parameter.
+
- Patch #876206: function call speedup by retaining allocated frame
objects.