Kaydet (Commit) 1e469c56 authored tarafından Walter Dörwald's avatar Walter Dörwald

Fix description: u"%c" % 0xffffffff returned a ValueError not a TypeError.

üst 44f527fe
...@@ -36,7 +36,7 @@ Core and builtins ...@@ -36,7 +36,7 @@ Core and builtins
- "%c" % u"a" now returns a unicode string instead of raising a - "%c" % u"a" now returns a unicode string instead of raising a
TypeError. u"%c" % 0xffffffff now raises a OverflowError instead 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 Extension modules
----------------- -----------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment