diff options
author | Walter Dörwald <walter@livinglogic.de> | 2003-04-02 16:57:59 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2003-04-02 16:57:59 (GMT) |
commit | 1e469c5603549310699dbfcb66dd38a7ccd3b404 (patch) | |
tree | 5b31aed0d7679dc8923d1c83638dfc559d87fd55 | |
parent | 44f527fea4c73038322c7c6647e20e47c2ccdd88 (diff) | |
download | cpython-1e469c5603549310699dbfcb66dd38a7ccd3b404.zip cpython-1e469c5603549310699dbfcb66dd38a7ccd3b404.tar.gz cpython-1e469c5603549310699dbfcb66dd38a7ccd3b404.tar.bz2 |
Fix description: u"%c" % 0xffffffff returned a ValueError not a TypeError.
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ----------------- |