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, facundobatista, mark.dickinson, rhettinger, serhiy.storchaka
Date 2021-11-28.21:35:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1638135342.93.0.196772538362.issue45739@roundup.psfhosted.org>
In-reply-to
Content
While I'd prefer -1 overall, I would also prefer 3 over 2. If we were adding the feature from scratch, we wouldn't have decimal differ from int, float, and complex.

And I'm not in favor of an uppercase converter, no matter what we do here. The other converters work like:

f'{obj!s}' -> format(str(obj))
f'{obj!r}' -> format(repr(obj))

but the proposed !u would be

f'{obj!u}' -> format(obj).upper()

That is, it operates on the result of __format__, not its input.
History
Date User Action Args
2021-11-28 21:35:42eric.smithsetrecipients: + eric.smith, rhettinger, facundobatista, mark.dickinson, serhiy.storchaka
2021-11-28 21:35:42eric.smithsetmessageid: <1638135342.93.0.196772538362.issue45739@roundup.psfhosted.org>
2021-11-28 21:35:42eric.smithlinkissue45739 messages
2021-11-28 21:35:42eric.smithcreate