summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2008-03-18 02:49:46 (GMT)
committerGuido van Rossum <guido@python.org>2008-03-18 02:49:46 (GMT)
commit04edb528ca39d25a019e7b391a3b5a69156848fe (patch)
tree115e9a3fb067da94b2249b39c29bd6ce38197047 /Misc
parent0bb7950829839cf321c15638851550f0d79a6df7 (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index cce6152..86ff1ea 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -360,6 +360,7 @@ Magnus Kessler
Lawrence Kesteloot
Vivek Khera
Mads Kiilerich
+Taek Joo Kim
Steve Kirsch
Ron Klatchko
Bastian Kleineidam
diff --git a/Misc/NEWS b/Misc/NEWS
index 03597a5..cb84491 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.