diff options
Diffstat (limited to 'Lib/test/test_math.py')
| -rw-r--r-- | Lib/test/test_math.py | 12 | 
1 files changed, 10 insertions, 2 deletions
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py index 48f84ba..c9f3f16 100644 --- a/Lib/test/test_math.py +++ b/Lib/test/test_math.py @@ -422,9 +422,17 @@ class MathTests(unittest.TestCase):              self.assertEqual(math.factorial(i), py_factorial(i))          self.assertRaises(ValueError, math.factorial, -1)          self.assertRaises(ValueError, math.factorial, -1.0) +        self.assertRaises(ValueError, math.factorial, -10**100) +        self.assertRaises(ValueError, math.factorial, -1e100)          self.assertRaises(ValueError, math.factorial, math.pi) -        self.assertRaises(OverflowError, math.factorial, sys.maxsize+1) -        self.assertRaises(OverflowError, math.factorial, 10e100) + +    # Other implementations may place different upper bounds. +    @support.cpython_only +    def testFactorialHugeInputs(self): +        # Currently raises ValueError for inputs that are too large +        # to fit into a C long. +        self.assertRaises(OverflowError, math.factorial, 10**100) +        self.assertRaises(OverflowError, math.factorial, 1e100)      def testFloor(self):          self.assertRaises(TypeError, math.floor)  | 
