mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Merged revisions 83400 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83400 | mark.dickinson | 2010-08-01 11:41:49 +0100 (Sun, 01 Aug 2010) | 7 lines Issue #9416: Fix some issues with complex formatting where the output with no type specifier failed to match the str output: - format(complex(-0.0, 2.0), '-') omitted the real part from the output, - format(complex(0.0, 2.0), '-') included a sign and parentheses. ........
This commit is contained in:
parent
1f05e2e9ba
commit
aad57bd1bb
3 changed files with 24 additions and 4 deletions
|
@ -558,6 +558,16 @@ class ComplexTest(unittest.TestCase):
|
|||
self.assertEqual(format(z, '-'), str(z))
|
||||
self.assertEqual(format(z, '<'), str(z))
|
||||
self.assertEqual(format(z, '10'), str(z))
|
||||
z = complex(0.0, 3.0)
|
||||
self.assertEqual(format(z, ''), str(z))
|
||||
self.assertEqual(format(z, '-'), str(z))
|
||||
self.assertEqual(format(z, '<'), str(z))
|
||||
self.assertEqual(format(z, '2'), str(z))
|
||||
z = complex(-0.0, 2.0)
|
||||
self.assertEqual(format(z, ''), str(z))
|
||||
self.assertEqual(format(z, '-'), str(z))
|
||||
self.assertEqual(format(z, '<'), str(z))
|
||||
self.assertEqual(format(z, '3'), str(z))
|
||||
|
||||
self.assertEqual(format(1+3j, 'g'), '1+3j')
|
||||
self.assertEqual(format(3j, 'g'), '0+3j')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue