From: Brett Cannon Date: Wed, 20 Sep 2006 18:34:28 +0000 (+0000) Subject: Accidentally didn't commit Misc/NEWS entry on when __unicode__() was removed X-Git-Tag: v2.6a1~2652 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9adeab7b967069b2722c8a163f3404616b62b8e2;p=python Accidentally didn't commit Misc/NEWS entry on when __unicode__() was removed from exceptions. --- diff --git a/Misc/NEWS b/Misc/NEWS index 0f9cf8061a..911f721f78 100644 --- 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.