diff options
author | Guido van Rossum <guido@python.org> | 2008-03-18 02:49:46 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2008-03-18 02:49:46 (GMT) |
commit | 04edb528ca39d25a019e7b391a3b5a69156848fe (patch) | |
tree | 115e9a3fb067da94b2249b39c29bd6ce38197047 /Misc | |
parent | 0bb7950829839cf321c15638851550f0d79a6df7 (diff) | |
download | cpython-04edb528ca39d25a019e7b391a3b5a69156848fe.zip cpython-04edb528ca39d25a019e7b391a3b5a69156848fe.tar.gz cpython-04edb528ca39d25a019e7b391a3b5a69156848fe.tar.bz2 |
- Issue #2371: Add a Py3k warning when catching an exception that
doesn't derive from BaseException.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -360,6 +360,7 @@ Magnus Kessler Lawrence Kesteloot Vivek Khera Mads Kiilerich +Taek Joo Kim Steve Kirsch Ron Klatchko Bastian Kleineidam @@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 2? Core and builtins ----------------- +- Issue #2371: Add a Py3k warning when catching an exception that + doesn't derive from BaseException. + - Issue #2321: use pymalloc for unicode object string data to reduce memory usage in some circumstances. |