summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_multibytecodec_support.py
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2006-03-26 06:21:34 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2006-03-26 06:21:34 (GMT)
commit9f4b632212742fbcd91e921e2516a6285fd7728b (patch)
treef1a1574241882414c5ce0e5042e349b604526013 /Lib/test/test_multibytecodec_support.py
parent7545a6bac2827c5f1d6feb85c41dd19544d4d626 (diff)
downloadcpython-9f4b632212742fbcd91e921e2516a6285fd7728b.zip
cpython-9f4b632212742fbcd91e921e2516a6285fd7728b.tar.gz
cpython-9f4b632212742fbcd91e921e2516a6285fd7728b.tar.bz2
Allow long objects as a position value of error callbacks returned.
Diffstat (limited to 'Lib/test/test_multibytecodec_support.py')
-rw-r--r--Lib/test/test_multibytecodec_support.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/Lib/test/test_multibytecodec_support.py b/Lib/test/test_multibytecodec_support.py
index 563a3ea..bec32de 100644
--- a/Lib/test/test_multibytecodec_support.py
+++ b/Lib/test/test_multibytecodec_support.py
@@ -60,7 +60,7 @@ class TestBase:
"&#2835;&#2851;&#2912; nd eggs"
)
- def test_customreplace(self):
+ def test_customreplace_encode(self):
if self.has_iso10646:
return
@@ -96,6 +96,19 @@ class TestBase:
self.assertRaises(TypeError, self.encode, self.unmappedunicode,
'test.cjktest')
+ def test_callback_long_index(self):
+ def myreplace(exc):
+ return (u'x', long(exc.end))
+ codecs.register_error("test.cjktest", myreplace)
+ self.assertEqual(self.encode(u'abcd' + self.unmappedunicode + u'efgh',
+ 'test.cjktest'), ('abcdxefgh', 9))
+
+ def myreplace(exc):
+ return (u'x', sys.maxint + 1)
+ codecs.register_error("test.cjktest", myreplace)
+ self.assertRaises(IndexError, self.encode, self.unmappedunicode,
+ 'test.cjktest')
+
def test_callback_None_index(self):
def myreplace(exc):
return (u'x', None)