diff options
author | Eric Smith <eric@trueblade.com> | 2009-05-05 14:04:18 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2009-05-05 14:04:18 (GMT) |
commit | 63376228a3f2d3ac4a21a10c0653c3b984c2d686 (patch) | |
tree | e781a7c8a1abe5c032d83bbc2948c4bd34d4d77e /Lib/test/test_float.py | |
parent | 86a05ecdb5eb91cf174e9b3c8adf0187e868aa68 (diff) | |
download | cpython-63376228a3f2d3ac4a21a10c0653c3b984c2d686.zip cpython-63376228a3f2d3ac4a21a10c0653c3b984c2d686.tar.gz cpython-63376228a3f2d3ac4a21a10c0653c3b984c2d686.tar.bz2 |
Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson.
Diffstat (limited to 'Lib/test/test_float.py')
-rw-r--r-- | Lib/test/test_float.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py index fb6daaf..b617fa3 100644 --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -284,6 +284,13 @@ class FormatTestCase(unittest.TestCase): self.assertEqual(format(0.01, ''), '0.01') self.assertEqual(format(0.01, 'g'), '0.01') + # empty presentation type should format in the same way as str + # (issue 5920) + x = 100/7. + self.assertEqual(format(x, ''), str(x)) + self.assertEqual(format(x, '-'), str(x)) + self.assertEqual(format(x, '>'), str(x)) + self.assertEqual(format(x, '2'), str(x)) self.assertEqual(format(1.0, 'f'), '1.000000') |