From ee139688d3d70ae8af00072cb8f0fb1d0d80a688 Mon Sep 17 00:00:00 2001 From: Brian Curtin Date: Sun, 31 Oct 2010 00:08:27 +0000 Subject: [PATCH] Merged revisions 86003 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86003 | brian.curtin | 2010-10-30 19:03:45 -0500 (Sat, 30 Oct 2010) | 2 lines Fix ResourceWarning. Use context manager to properly close file. ........ --- Lib/test/test_float.py | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py index 0328d1adc1a..de5ca46fdf6 100644 --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -540,19 +540,20 @@ class IEEEFormatTestCase(unittest.TestCase): @requires_IEEE_754 def test_format_testfile(self): - for line in open(format_testfile): - if line.startswith('--'): - continue - line = line.strip() - if not line: - continue + with open(format_testfile) as testfile: + for line in open(format_testfile): + if line.startswith('--'): + continue + line = line.strip() + if not line: + continue - lhs, rhs = map(str.strip, line.split('->')) - fmt, arg = lhs.split() - arg = float(arg) - self.assertEqual(fmt % arg, rhs) - if not math.isnan(arg) and copysign(1.0, arg) > 0.0: - self.assertEqual(fmt % -arg, '-' + rhs) + lhs, rhs = map(str.strip, line.split('->')) + fmt, arg = lhs.split() + arg = float(arg) + self.assertEqual(fmt % arg, rhs) + if not math.isnan(arg) and copysign(1.0, arg) > 0.0: + self.assertEqual(fmt % -arg, '-' + rhs) def test_issue5864(self): self.assertEquals(format(123.456, '.4'), '123.5')