diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index 140a2b04b1a..0b67c3e5041 100644 --- a/Lib/test/test_long.py +++ b/Lib/test/test_long.py @@ -380,7 +380,9 @@ def test_float_overflow(self): "1. ** huge", "huge ** 1.", "1. ** mhuge", "mhuge ** 1.", "math.sin(huge)", "math.sin(mhuge)", "math.sqrt(huge)", "math.sqrt(mhuge)", # should do better - "math.floor(huge)", "math.floor(mhuge)"]: + # math.floor() of an int returns an int now + ##"math.floor(huge)", "math.floor(mhuge)", + ]: self.assertRaises(OverflowError, eval, test, namespace)