summaryrefslogtreecommitdiff
path: root/Lib/test/test_codeccallbacks.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-10-24 21:25:34 +0000
committerGeorg Brandl <georg@python.org>2007-10-24 21:25:34 +0000
commit912b7a46230affe14ca1c876986a971a8b96bf48 (patch)
treea31924d69ea6d401e9006f48be86b822e189daa1 /Lib/test/test_codeccallbacks.py
parentf0f4d1cf297628a441a0ee5f7841c869af5f2b4a (diff)
downloadcpython-912b7a46230affe14ca1c876986a971a8b96bf48.tar.gz
Remove a test case which is no longer valid.
Diffstat (limited to 'Lib/test/test_codeccallbacks.py')
-rw-r--r--Lib/test/test_codeccallbacks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_codeccallbacks.py b/Lib/test/test_codeccallbacks.py
index 0256eb63ec..9cf43a5b72 100644
--- a/Lib/test/test_codeccallbacks.py
+++ b/Lib/test/test_codeccallbacks.py
@@ -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: ()})