summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2008-03-18 04:26:48 (GMT)
committerGuido van Rossum <guido@python.org>2008-03-18 04:26:48 (GMT)
commit504153d55b11aa8f622b6e4baa6a5e94ddfe96e2 (patch)
tree9f211d2f1445509b590af7b7d3942f93f8bc2425 /Misc/NEWS
parenta5573b31532f59a63d9ff24e415592f60f974da4 (diff)
downloadcpython-504153d55b11aa8f622b6e4baa6a5e94ddfe96e2.zip
cpython-504153d55b11aa8f622b6e4baa6a5e94ddfe96e2.tar.gz
cpython-504153d55b11aa8f622b6e4baa6a5e94ddfe96e2.tar.bz2
Issue #2341: Add a Py3k warning when raising an exception that doesn't
derive from BaseException.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f1746b2..5436c25 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,7 +13,8 @@ Core and builtins
-----------------
- Issue #2371: Add a Py3k warning when catching an exception that
- doesn't derive from BaseException.
+ doesn't derive from BaseException. Issue #2341: Add a Py3k warning
+ when raising an exception that doesn't derive from BaseException.
- Issue #2321: use pymalloc for unicode object string data to reduce
memory usage in some circumstances.