summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2008-07-08 14:21:42 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2008-07-08 14:21:42 (GMT)
commit14ff99432db1df8c69271745d204420d9e49d59f (patch)
treecdddc70eb5c5f4de10469b13e658e0530a4073d8
parent524b7773ccf6f462444c22da19cf138f0c6416e4 (diff)
downloadcpython-14ff99432db1df8c69271745d204420d9e49d59f.zip
cpython-14ff99432db1df8c69271745d204420d9e49d59f.tar.gz
cpython-14ff99432db1df8c69271745d204420d9e49d59f.tar.bz2
Add missing NEWS and ACK entries for r64791
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a9713b0..e79f20a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -146,6 +146,7 @@ Alex Coventry
Matthew Dixon Cowles
Christopher A. Craig
Laura Creighton
+Simon Cross
Drew Csillag
John Cugini
Tom Culliton
diff --git a/Misc/NEWS b/Misc/NEWS
index d942849..b9affe5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 2.6 beta 2?
Core and Builtins
-----------------
+- Issue #2517: Allow unicode messages in Exceptions again by correctly
+ bypassing the instance dictionary when looking up __unicode__ on
+ new-style classes.
+
- Issue #3242: Fix a crash inside the print statement, if sys.stdout is
set to a custom object whose write() method happens to install
another file in sys.stdout.