Commit 670048de authored by Ezio Melotti's avatar Ezio Melotti

Fix deprecation warnings in test_long_future.py

parent aad15414
...@@ -4,7 +4,7 @@ from __future__ import division ...@@ -4,7 +4,7 @@ from __future__ import division
# trick just part of test_long into using future division. # trick just part of test_long into using future division.
import unittest import unittest
from test.test_support import run_unittest from test.test_support import run_unittest, _check_py3k_warnings
class TrueDivisionTests(unittest.TestCase): class TrueDivisionTests(unittest.TestCase):
def test(self): def test(self):
...@@ -44,8 +44,9 @@ class TrueDivisionTests(unittest.TestCase): ...@@ -44,8 +44,9 @@ class TrueDivisionTests(unittest.TestCase):
self.assertEqual(result, 0.0, self.assertEqual(result, 0.0,
"expected underflow to 0 from %r" % underflow) "expected underflow to 0 from %r" % underflow)
for zero in ["huge / 0", "huge / 0L", "mhuge / 0", "mhuge / 0L"]: with _check_py3k_warnings(('classic long division', DeprecationWarning)):
self.assertRaises(ZeroDivisionError, eval, zero, namespace) for zero in ["huge / 0", "huge / 0L", "mhuge / 0", "mhuge / 0L"]:
self.assertRaises(ZeroDivisionError, eval, zero, namespace)
def test_main(): def test_main():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment