diff options
author | Eric Smith <eric@trueblade.com> | 2009-06-09 12:38:08 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2009-06-09 12:38:08 (GMT) |
commit | 9eeeee9d71223a55e6c6ccff6ea7ff11456fc74a (patch) | |
tree | 9ad00b1aa29fa072e6705832d81770344934f79c | |
parent | ccb9d4b21c37183c1e2e10cd14e4f734157c153f (diff) | |
download | cpython-9eeeee9d71223a55e6c6ccff6ea7ff11456fc74a.zip cpython-9eeeee9d71223a55e6c6ccff6ea7ff11456fc74a.tar.gz cpython-9eeeee9d71223a55e6c6ccff6ea7ff11456fc74a.tar.bz2 |
Restored a test that was erroneously removed. See issue 6198.
-rw-r--r-- | Lib/test/formatfloat_testcases.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/formatfloat_testcases.txt b/Lib/test/formatfloat_testcases.txt index fb394dc..bbe3ed4 100644 --- a/Lib/test/formatfloat_testcases.txt +++ b/Lib/test/formatfloat_testcases.txt @@ -61,7 +61,7 @@ -- makes a difference when the precision is 0. %#.0f 0 -> 0. %#.1f 0 -> 0.0 ---%#.0f 1.5 -> 2. See issue 6198. +%#.0f 1.5 -> 2. -- %#.0f 2.5 -> 2. See issue 6198. %#.0f 10.1 -> 10. %#.0f 1234.56 -> 1235. |