[Python-checkins] python/dist/src/Misc NEWS,1.710,1.711
doerwalter@users.sourceforge.net
doerwalter@users.sourceforge.net
Wed, 02 Apr 2003 08:58:07 -0800
Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv26974/Misc
Modified Files:
NEWS
Log Message:
Fix description: u"%c" % 0xffffffff returned a ValueError not a TypeError.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.710
retrieving revision 1.711
diff -C2 -d -r1.710 -r1.711
*** NEWS 2 Apr 2003 16:37:23 -0000 1.710
--- NEWS 2 Apr 2003 16:57:59 -0000 1.711
***************
*** 37,41 ****
- "%c" % u"a" now returns a unicode string instead of raising a
TypeError. u"%c" % 0xffffffff now raises a OverflowError instead
! of a TypeError to be consistent with "%c" % 256. See SF patch #710127.
Extension modules
--- 37,41 ----
- "%c" % u"a" now returns a unicode string instead of raising a
TypeError. u"%c" % 0xffffffff now raises a OverflowError instead
! of a ValueError to be consistent with "%c" % 256. See SF patch #710127.
Extension modules