[Python-checkins] r79614 - python/branches/release26-maint/Lib/test/test_float.py

mark.dickinson python-checkins at python.org
Fri Apr 2 21:28:03 CEST 2010


Author: mark.dickinson
Date: Fri Apr  2 21:28:02 2010
New Revision: 79614

Log:
Undo accidental change in r79612.

Modified:
   python/branches/release26-maint/Lib/test/test_float.py

Modified: python/branches/release26-maint/Lib/test/test_float.py
==============================================================================
--- python/branches/release26-maint/Lib/test/test_float.py	(original)
+++ python/branches/release26-maint/Lib/test/test_float.py	Fri Apr  2 21:28:02 2010
@@ -654,7 +654,7 @@
         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)


More information about the Python-checkins mailing list