- Issue #2371: Add a Py3k warning when catching an exception that
doesn't derive from BaseException.
diff --git a/Misc/ACKS b/Misc/ACKS
index cce6152..86ff1ea 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -360,6 +360,7 @@
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 @@
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.