This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients eric.smith
Date 2010-02-22.16:19:01
SpamBayes Score 0.00014853926
Marked as misclassified No
Message-id <1266855543.18.0.92695356509.issue7988@psf.upfronthosting.co.za>
In-reply-to
Content
Complex uses left alignment by default, but should use right alignment like the other numeric types.

>>> format(1+1j, '20.0')
'(1+1j)              '

>>> format(1.0, '20.0')
'               1e+00'

>>> format(1, '20')
'                   1'
History
Date User Action Args
2010-02-22 16:19:03eric.smithsetrecipients: + eric.smith
2010-02-22 16:19:03eric.smithsetmessageid: <1266855543.18.0.92695356509.issue7988@psf.upfronthosting.co.za>
2010-02-22 16:19:02eric.smithlinkissue7988 messages
2010-02-22 16:19:01eric.smithcreate