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 nikratio, pitrou, serhiy.storchaka, vstinner
Date 2014-03-25.23:35:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395790521.66.0.810535160556.issue21057@psf.upfronthosting.co.za>
In-reply-to
Content
bytes objects have two things going for them:
- they have the full bytes API (all the startswith(), etc. methods) - not only buffer access
- they are immutable: you can keep an internal reference to a bytes object and be sure it won't change under your feet

This is especially handy when writing C code.
History
Date User Action Args
2014-03-25 23:35:21pitrousetrecipients: + pitrou, vstinner, nikratio, serhiy.storchaka
2014-03-25 23:35:21pitrousetmessageid: <1395790521.66.0.810535160556.issue21057@psf.upfronthosting.co.za>
2014-03-25 23:35:21pitroulinkissue21057 messages
2014-03-25 23:35:21pitroucreate