[pypy-svn] r69511 - pypy/branch/float-comparison/pypy/objspace/std/test

arigo at codespeak.net arigo at codespeak.net
Sun Nov 22 18:52:26 CET 2009


Author: arigo
Date: Sun Nov 22 18:52:25 2009
New Revision: 69511

Modified:
   pypy/branch/float-comparison/pypy/objspace/std/test/test_floatobject.py
Log:
This is what I intended.


Modified: pypy/branch/float-comparison/pypy/objspace/std/test/test_floatobject.py
==============================================================================
--- pypy/branch/float-comparison/pypy/objspace/std/test/test_floatobject.py	(original)
+++ pypy/branch/float-comparison/pypy/objspace/std/test/test_floatobject.py	Sun Nov 22 18:52:25 2009
@@ -216,7 +216,7 @@
         nan = infinity/infinity
         for x in (123, 1 << 30,
                   (1 << 33) - 1, 1 << 33, (1 << 33) + 1,
-                  1 << 63, 1 << 70):
+                  1 << 62, 1 << 70):
             #
             assert     (x == float(x))
             assert     (x >= float(x))



More information about the Pypy-commit mailing list