diff options
Diffstat (limited to 'Lib/test/test_long.py')
-rw-r--r-- | Lib/test/test_long.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index ac345a6..e123638 100644 --- a/Lib/test/test_long.py +++ b/Lib/test/test_long.py @@ -357,7 +357,7 @@ def test_float_overflow(): "math.sqrt(huge)", "math.sqrt(mhuge)", # should do better "math.log10(huge)", "math.log10(mhuge)", # should do better "math.floor(huge)", "math.floor(mhuge)"]: - + try: eval(test, namespace) except OverflowError: |