summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-04-02 19:28:02 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-04-02 19:28:02 (GMT)
commit2cbfb2d001cb2bf4cd11982497f3919386eba771 (patch)
tree3c042d7322a23e43f561e260eaa6a97d4b93eb74
parent1db6e103d8ae22f604559e18a1d182185ac8dd5c (diff)
downloadcpython-2cbfb2d001cb2bf4cd11982497f3919386eba771.zip
cpython-2cbfb2d001cb2bf4cd11982497f3919386eba771.tar.gz
cpython-2cbfb2d001cb2bf4cd11982497f3919386eba771.tar.bz2
Undo accidental change in r79612.
-rw-r--r--Lib/test/test_float.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py
index 636197a..23c0c54 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)