mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Merged revisions 70430 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70430 | mark.dickinson | 2009-03-17 18:01:03 +0000 (Tue, 17 Mar 2009) | 3 lines Fix bug in Decimal __format__ method that swapped left and right alignment. ........
This commit is contained in:
parent
44c5481941
commit
ad41634313
3 changed files with 11 additions and 2 deletions
|
@ -693,6 +693,12 @@ class DecimalFormatTest(unittest.TestCase):
|
|||
('.0g', '-sNaN', '-sNaN'),
|
||||
|
||||
('', '1.00', '1.00'),
|
||||
|
||||
# check alignment
|
||||
('<6', '123', '123 '),
|
||||
('>6', '123', ' 123'),
|
||||
('^6', '123', ' 123 '),
|
||||
('=+6', '123', '+ 123'),
|
||||
]
|
||||
for fmt, d, result in test_values:
|
||||
self.assertEqual(format(Decimal(d), fmt), result)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue