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 ztane
Recipients eric.smith, serhiy.storchaka, ztane
Date 2016-09-29.12:01:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475150496.92.0.19880930146.issue28307@psf.upfronthosting.co.za>
In-reply-to
Content
Serhiy, you actually did make a mistake above; `'%s' % x` cannot be rewritten as `f'{x!s}'`, only `'%s' % (x,)` can be optimized... 

(just try with `x = 1, 2`)
History
Date User Action Args
2016-09-29 12:01:37ztanesetrecipients: + ztane, eric.smith, serhiy.storchaka
2016-09-29 12:01:36ztanesetmessageid: <1475150496.92.0.19880930146.issue28307@psf.upfronthosting.co.za>
2016-09-29 12:01:36ztanelinkissue28307 messages
2016-09-29 12:01:36ztanecreate