test_exceptions.py passes, except for pickling of course.

This commit is contained in:
Guido van Rossum 2007-05-04 05:06:43 +00:00
parent d1ea73b72d
commit d7c43dd5a2
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ class ExceptionTests(unittest.TestCase):
except TypeError: pass
self.raise_catch(ValueError, "ValueError")
self.assertRaises(ValueError, chr, 10000)
self.assertRaises(ValueError, chr, 1000000)
self.raise_catch(ZeroDivisionError, "ZeroDivisionError")
try: x = 1/0