Commit 912b7a46 authored by Georg Brandl's avatar Georg Brandl

Remove a test case which is no longer valid.

parent f0f4d1cf
......@@ -792,7 +792,7 @@ class CodecCallbackTest(unittest.TestCase):
class D(dict):
def __getitem__(self, key):
raise ValueError
self.assertRaises(ValueError, "\xff".translate, D())
#self.assertRaises(ValueError, "\xff".translate, D())
self.assertRaises(TypeError, "\xff".translate, {0xff: sys.maxunicode+1})
self.assertRaises(TypeError, "\xff".translate, {0xff: ()})
......
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