/Programs/

/cgit.png' alt='cgit logo'/> index : cpython.git
https://github.com/python/cpython.git
summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2003-01-31 17:19:08 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2003-01-31 17:19:08 (GMT)
commit2e0b18af3092a24c9689f72af898083ebfd9aec7 (patch)
tree5dd08384e3560210deb41201ae3d7835899b44cd /Objects
parentf7f4517faeec7a37f5ad545092252a55e0450e10 (diff)
downloadcpython-2e0b18af3092a24c9689f72af898083ebfd9aec7.zip
cpython-2e0b18af3092a24c9689f72af898083ebfd9aec7.tar.gz
cpython-2e0b18af3092a24c9689f72af898083ebfd9aec7.tar.bz2
Change the treatment of positions returned by PEP293
error handers in the Unicode codecs: Negative positions are treated as being relative to the end of the input and out of bounds positions result in an IndexError. Also update the PEP and include an explanation of this in the documentation for codecs.register_error. Fixes a small bug in iconv_codecs: if the position from the callback is negative *add* it to the size instead of substracting it. From SF patch #677429.