Commit 90c72199 authored by Mark Dickinson's avatar Mark Dickinson

Merged revisions 64981 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r64981 | mark.dickinson | 2008-07-15 22:55:23 +0100 (Tue, 15 Jul 2008) | 4 lines

  Fix float.from_hex tests.  It appears that Linux/ia64 doesn't like
  computing 2.0**-1074 accurately.  Using ldexp(1.0, -1074) should be
  safer.
........
parent ff369b60
......@@ -377,10 +377,10 @@ class HexFloatTestCase(unittest.TestCase):
self.fail('%r not identical to %r' % (x, y))
def test_ends(self):
self.identical(self.MIN, 2.**-1022)
self.identical(self.TINY, 2.**-1074)
self.identical(self.EPS, 2.**-52)
self.identical(self.MAX, 2.*(2.**1023 - 2.**970))
self.identical(self.MIN, ldexp(1.0, -1022))
self.identical(self.TINY, ldexp(1.0, -1074))
self.identical(self.EPS, ldexp(1.0, -52))
self.identical(self.MAX, 2.*(ldexp(1.0, 1023) - ldexp(1.0, 970)))
def test_invalid_inputs(self):
invalid_inputs = [
......
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