summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-07-23 09:44:21 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-07-23 09:44:21 (GMT)
commitfa712ca1ed5c04a07dca4ae6837c74509d89fa82 (patch)
tree1588184f9074321d559be058834f63c23730dab2 /Lib/test
parentfe36fc91ed08537f4b2ee728bcf4a00dc9ee29dd (diff)
downloadcpython-fa712ca1ed5c04a07dca4ae6837c74509d89fa82.zip
cpython-fa712ca1ed5c04a07dca4ae6837c74509d89fa82.tar.gz
cpython-fa712ca1ed5c04a07dca4ae6837c74509d89fa82.tar.bz2
Whitespace normalization.
Note: This test fails on Windows. Don't know why yet.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_fpformat.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/test/test_fpformat.py b/Lib/test/test_fpformat.py
index 1314654..532b3f7 100644
--- a/Lib/test/test_fpformat.py
+++ b/Lib/test/test_fpformat.py
@@ -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)
-