]> granicus.if.org Git - python/commitdiff
Fix description: u"%c" % 0xffffffff returned a ValueError not a TypeError.
authorWalter Dörwald <walter@livinglogic.de>
Wed, 2 Apr 2003 16:57:59 +0000 (16:57 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Wed, 2 Apr 2003 16:57:59 +0000 (16:57 +0000)
Misc/NEWS

index 673af1c4754e504295d7d08dcb99a4f4c07fde6c..2356ca852987a01702bf42cedbaf39cfb8b9aa45 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,7 +36,7 @@ Core and builtins
 
 - "%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.
+  of a ValueError to be consistent with "%c" % 256. See SF patch #710127.
 
 Extension modules
 -----------------