Message 337560 - Python tracker (original) (raw)
Message337560
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:25 | akash0x53 | set | recipients: + akash0x53 |
2019-03-09 07:10:25 | akash0x53 | set | messageid: 1552115425.63.0.499899364573.issue36249@roundup.psfhosted.org |
2019-03-09 07:10:25 | akash0x53 | link | issue36249 messages |
2019-03-09 07:10:25 | akash0x53 | create |