summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-10-24 21:25:34 (GMT)
committerGeorg Brandl <georg@python.org>2007-10-24 21:25:34 (GMT)
commitedbcc1332f9d8e09fc7f511b6122c06b8dbd49c5 (patch)
tree70eba5ae34bc19572cb857023dfa7dd7a761c631 /Lib/test
parentd2093f7793ef73215cc2c60ce09aa97b12f837a9 (diff)
downloadcpython-edbcc1332f9d8e09fc7f511b6122c06b8dbd49c5.zip
cpython-edbcc1332f9d8e09fc7f511b6122c06b8dbd49c5.tar.gz
cpython-edbcc1332f9d8e09fc7f511b6122c06b8dbd49c5.tar.bz2
Remove a test case which is no longer valid.
Diffstat (limited to 'Lib/test')
-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 0256eb6..9cf43a5 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: ()})