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 mbussonn
Recipients ericvw, gvanrossum, mbussonn
Date 2019-05-14.03:03:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557802982.62.0.460215242716.issue36912@roundup.psfhosted.org>
In-reply-to
Content
Aren't > and < the characters to right/left-align ?

>>> foo = 'abc'
>>> f"{foo:>10}"
'       abc'
>>> format(foo, '>10')
'       abc'
History
Date User Action Args
2019-05-14 03:03:02mbussonnsetrecipients: + mbussonn, gvanrossum, ericvw
2019-05-14 03:03:02mbussonnsetmessageid: <1557802982.62.0.460215242716.issue36912@roundup.psfhosted.org>
2019-05-14 03:03:02mbussonnlinkissue36912 messages
2019-05-14 03:03:02mbussonncreate