mirror of
https://github.com/python/cpython.git
synced 2025-08-01 07:33:08 +00:00
Issue #5864: format(1234.5, '.4') gives misleading result
(Backport of r72109 from py3k.)
This commit is contained in:
parent
867475c970
commit
92fcc9c991
3 changed files with 112 additions and 11 deletions
|
@ -253,6 +253,11 @@ class IEEEFormatTestCase(unittest.TestCase):
|
|||
self.assertEquals(math.atan2(float('-1e-1000'), -1),
|
||||
math.atan2(-0.0, -1))
|
||||
|
||||
def test_issue5864(self):
|
||||
self.assertEquals(format(123.456, '.4'), '123.5')
|
||||
self.assertEquals(format(1234.56, '.4'), '1.235e+03')
|
||||
self.assertEquals(format(12345.6, '.4'), '1.235e+04')
|
||||
|
||||
class ReprTestCase(unittest.TestCase):
|
||||
def test_repr(self):
|
||||
floats_file = open(os.path.join(os.path.split(__file__)[0],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue