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 pitrou
Recipients Sworddragon, pitrou, r.david.murray
Date 2013-11-26.17:23:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385486632.44.0.0238352745935.issue19801@psf.upfronthosting.co.za>
In-reply-to
Content
Indeed. If you want to concatenate a lot of bytes objects efficiently, there are three solutions:
- concatenate to a bytearray
- write to a io.BytesIO object
- use b''.join to concatenate all objects at once
History
Date User Action Args
2013-11-26 17:23:52pitrousetrecipients: + pitrou, r.david.murray, Sworddragon
2013-11-26 17:23:52pitrousetmessageid: <1385486632.44.0.0238352745935.issue19801@psf.upfronthosting.co.za>
2013-11-26 17:23:52pitroulinkissue19801 messages
2013-11-26 17:23:52pitroucreate