[Python-checkins] r63802 - python/trunk/Lib/test/test_math.py

mark.dickinson python-checkins at python.org
Fri May 30 04:46:54 CEST 2008


Author: mark.dickinson
Date: Fri May 30 04:46:53 2008
New Revision: 63802

Log:
Fix typo in testSum


Modified:
   python/trunk/Lib/test/test_math.py

Modified: python/trunk/Lib/test/test_math.py
==============================================================================
--- python/trunk/Lib/test/test_math.py	(original)
+++ python/trunk/Lib/test/test_math.py	Fri May 30 04:46:53 2008
@@ -740,7 +740,7 @@
              OverflowError),
             ([2.**1023, 2.**1023, -1e307], OverflowError),
             ([1e16, 1., 1e-16], 10000000000000002.0),
-            ([1e16-2., 1.-2.**53, -(1e16-2.), -(1.-2.**53)], 0.0),
+            ([1e16-2., 1.-2.**-53, -(1e16-2.), -(1.-2.**-53)], 0.0),
         ]
 
         for i, (vals, s) in enumerate(test_values):


More information about the Python-checkins mailing list