]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove a test case which is no longer valid.
authorGeorg Brandl <georg@python.org>
Wed, 24 Oct 2007 21:25:34 +0000 (21:25 +0000)
committerGeorg Brandl <georg@python.org>
Wed, 24 Oct 2007 21:25:34 +0000 (21:25 +0000)
Lib/test/test_codeccallbacks.py

index 0256eb63ec2d1bdf71afd81069776131aa7b6b7b..9cf43a5b728af73fea5e0ef2139de85d7c24a0d6 100644 (file)
@@ -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: ()})