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 martin.panter
Recipients Arfrever, eric.smith, martin.panter, python-dev
Date 2015-09-21.22:45:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442875547.43.0.316637474973.issue25206@psf.upfronthosting.co.za>
In-reply-to
Content
Also in the first example, the colon (format specifier) and exclamation mark (conversion) are in the wrong order. It should either be

f"{expr3:!s}" → format(expr3, "!s")

or

f"{expr3!s:}" → format(str(expr3), "")
History
Date User Action Args
2015-09-21 22:45:47martin.pantersetrecipients: + martin.panter, eric.smith, Arfrever, python-dev
2015-09-21 22:45:47martin.pantersetmessageid: <1442875547.43.0.316637474973.issue25206@psf.upfronthosting.co.za>
2015-09-21 22:45:47martin.panterlinkissue25206 messages
2015-09-21 22:45:47martin.pantercreate