From: Mark Dickinson Date: Fri, 2 Apr 2010 19:28:02 +0000 (+0000) Subject: Undo accidental change in r79612. X-Git-Tag: v2.6.6rc1~511 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2cbfb2d001cb2bf4cd11982497f3919386eba771;p=python Undo accidental change in r79612. --- diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py index 636197a95d..23c0c540bf 100644 --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -654,7 +654,7 @@ class HexFloatTestCase(unittest.TestCase): self.identical(fromHex('-0X8p-1076'), -2*TINY) self.identical(fromHex('-0X9p-1076'), -2*TINY) self.identical(fromHex('-0Xap-1076'), -2*TINY) - self.identical(fromHex('-0xbp-1076'), -4*TINY) + self.identical(fromHex('-0xbp-1076'), -3*TINY) self.identical(fromHex('-0xcp-1076'), -3*TINY) self.identical(fromHex('-0Xdp-1076'), -3*TINY) self.identical(fromHex('-0xep-1076'), -4*TINY)