Accidentally didn't commit Misc/NEWS entry on when __unicode__() was removed

from exceptions.
This commit is contained in:
Brett Cannon 2006-09-20 18:34:28 +00:00
parent 2fa067982c
commit 9adeab7b96
1 changed files with 3 additions and 0 deletions

View File

@ -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.