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 serhiy.storchaka
Recipients Demur Rumed, eric.smith, mjpieters, serhiy.storchaka, ztane
Date 2016-07-13.20:11:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468440697.46.0.259874161174.issue27078@psf.upfronthosting.co.za>
In-reply-to
Content
Proposed patch adds the BUILD_STRING opcode and speeds up PyObject_Format() in common cases. It makes f-strings the fastest method for simple formatting.

$ ./python -m timeit -s "x = 2" -- 'f"X is {x}"'
1000000 loops, best of 3: 0.347 usec per loop
History
Date User Action Args
2016-07-13 20:11:40serhiy.storchakasetrecipients: + serhiy.storchaka, mjpieters, eric.smith, ztane, Demur Rumed
2016-07-13 20:11:37serhiy.storchakasetmessageid: <1468440697.46.0.259874161174.issue27078@psf.upfronthosting.co.za>
2016-07-13 20:11:37serhiy.storchakalinkissue27078 messages
2016-07-13 20:11:37serhiy.storchakacreate