]> granicus.if.org Git - python/commitdiff
Accidentally didn't commit Misc/NEWS entry on when __unicode__() was removed
authorBrett Cannon <bcannon@gmail.com>
Wed, 20 Sep 2006 18:34:28 +0000 (18:34 +0000)
committerBrett Cannon <bcannon@gmail.com>
Wed, 20 Sep 2006 18:34:28 +0000 (18:34 +0000)
from exceptions.

Misc/NEWS

index 0f9cf8061af05642f6ae714c32156c00ae714dee..911f721f789815849e39a7eb9826a46bafc290fc 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1?
 Core and builtins
 -----------------
 
+- Bug #1551432: Exceptions do not define an explicit __unicode__ method.  This
+  allows calling unicode() on exceptions classes directly to succeed.
+
 - Make _PyGILState_NoteThreadState() static, it was not used anywhere
   outside of pystate.c and should not be necessary.