summaryrefslogtreecommitdiff
path: root/Lib/test/test_multibytecodec.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-12-02 13:04:37 -0500
committerBenjamin Peterson <benjamin@python.org>2012-12-02 13:04:37 -0500
commita2816c2b11aeb24b232570b4073a9644bfdd82c7 (patch)
treed447b9f1b48bba68bf0b45b18d5c1ec313f2b86d /Lib/test/test_multibytecodec.py
parent2f560fa3009b8b6d4e64eec4c1e7d201b5ed7035 (diff)
downloadcpython-git-a2816c2b11aeb24b232570b4073a9644bfdd82c7.tar.gz
more test to more general test file, so it can test more things
Diffstat (limited to 'Lib/test/test_multibytecodec.py')
-rw-r--r--Lib/test/test_multibytecodec.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_multibytecodec.py b/Lib/test/test_multibytecodec.py
index 7b47cb50e8..feb7bd595a 100644
--- a/Lib/test/test_multibytecodec.py
+++ b/Lib/test/test_multibytecodec.py
@@ -45,10 +45,6 @@ class Test_MultibyteCodec(unittest.TestCase):
self.assertRaises(IndexError, dec,
b'apple\x92ham\x93spam', 'test.cjktest')
- def test_errorhandler_returns_bytes(self):
- enc = "\u30fb\udc80".encode('gb18030', 'surrogateescape')
- self.assertEqual(enc, b'\x819\xa79\x80')
-
def test_codingspec(self):
try:
for enc in ALL_CJKENCODINGS: