]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Mon, 23 Jul 2001 09:44:21 +0000 (09:44 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 23 Jul 2001 09:44:21 +0000 (09:44 +0000)
Note:  This test fails on Windows.  Don't know why yet.

Lib/test/test_fpformat.py

index 1314654657b69d11c9c4ea6c0ee82a5b2102d7c6..532b3f7acf5e97413feb5794ea11b82d6fef67ab 100644 (file)
@@ -10,10 +10,10 @@ StringType = type('')
 
 # Test the old and obsolescent fpformat module.
 #
-# (It's obsolescent because fix(n,d) == "%.*f"%(d,n) and 
+# (It's obsolescent because fix(n,d) == "%.*f"%(d,n) and
 #                           sci(n,d) == "%.*e"%(d,n)
-#  for all reasonable numeric n and d, except that sci gives 3 exponent 
-#  digits instead of 2.  
+#  for all reasonable numeric n and d, except that sci gives 3 exponent
+#  digits instead of 2.
 #
 # Differences only occur for unreasonable n and d.    <.2 wink>)
 
@@ -64,4 +64,3 @@ class FpformatTest(unittest.TestCase):
             self.fail("No exception on non-numeric sci")
 
 run_unittest(FpformatTest)
-