From: Guido van Rossum Date: Fri, 4 May 2007 05:06:43 +0000 (+0000) Subject: test_exceptions.py passes, except for pickling of course. X-Git-Tag: v3.0a1~1022 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d7c43dd5a20ce9b4d4aa4e6490fb7fea7c2609f8;p=thirdparty%2FPython%2Fcpython.git test_exceptions.py passes, except for pickling of course. --- diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 9e7d15bf4854..aa9b66dff28e 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -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