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 akash0x53
Recipients akash0x53
Date 2019-03-09.07:10:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552115425.63.0.499899364573.issue36249@roundup.psfhosted.org>
In-reply-to
Content
Currently lot of code still uses old placeholder and .format() methods for formatting the string. Lets convert them all to f-string

"%s" % (name) => f'{name}'
"{name}".format(name="yoyo") = > f'{name}'
History
Date User Action Args
2019-03-09 07:10:25akash0x53setrecipients: + akash0x53
2019-03-09 07:10:25akash0x53setmessageid: <1552115425.63.0.499899364573.issue36249@roundup.psfhosted.org>
2019-03-09 07:10:25akash0x53linkissue36249 messages
2019-03-09 07:10:25akash0x53create