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 Demur Rumed, eric.smith, mjpieters, serhiy.storchaka, ztane
Date 2016-07-11.09:25:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468229106.08.0.0317984525672.issue27078@psf.upfronthosting.co.za>
In-reply-to
Content
Ah so it seems. Somehow I thought __format__ was slotted, but that is not the case and it needs to be looked up, and what is worse, of course a tuple needs to be built as well. 

Oh well, at least it should be quite minimal to make it be faster than `f(x)` there, which necessarily has one extra bound method call and interpretation of format string as the overhead, so there's minimally at least 30 % performance boost to achieve.
History
Date User Action Args
2016-07-11 09:25:06ztanesetrecipients: + ztane, mjpieters, eric.smith, serhiy.storchaka, Demur Rumed
2016-07-11 09:25:06ztanesetmessageid: <1468229106.08.0.0317984525672.issue27078@psf.upfronthosting.co.za>
2016-07-11 09:25:06ztanelinkissue27078 messages
2016-07-11 09:25:05ztanecreate