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 loewis
Recipients arjennienhuis, benjamin.peterson, christian.heimes, eric.smith, exarkun, ezio.melotti, glyph, gvanrossum, loewis, martin.panter, pitrou, serhiy.storchaka, terry.reedy, uau, vstinner
Date 2013-01-23.07:31:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1358926279.28.0.299507836287.issue3982@psf.upfronthosting.co.za>
In-reply-to
Content
I admit that it is puzzling that string interpolation is apparently the fastest way to assemble byte strings. It involves parsing the format string, so it ought to be slower than anything that merely concatenates (such as cStringIO). (I do understand why + is inefficient, as it creates temporary objects)
History
Date User Action Args
2013-01-23 07:31:19loewissetrecipients: + loewis, gvanrossum, terry.reedy, exarkun, pitrou, vstinner, eric.smith, christian.heimes, benjamin.peterson, glyph, ezio.melotti, arjennienhuis, uau, martin.panter, serhiy.storchaka
2013-01-23 07:31:19loewissetmessageid: <1358926279.28.0.299507836287.issue3982@psf.upfronthosting.co.za>
2013-01-23 07:31:19loewislinkissue3982 messages
2013-01-23 07:31:19loewiscreate