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 chris.jerdonek
Recipients Guillaume.Bouchard, chris.jerdonek, docs@python, eric.araujo, ezio.melotti, pitrou, r.david.murray, terry.reedy
Date 2012-10-15.17:27:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350322023.08.0.276065644301.issue13538@psf.upfronthosting.co.za>
In-reply-to
Content
> I would just say that str(bytesobj, encoding, errors) is equivalent to bytesobj.decode(encoding, errors) (assuming it really is).

Good suggestion.  And yes, code is shared in the following way:

http://hg.python.org/cpython/file/d3c7ebdc71bb/Objects/bytesobject.c#l2306

One thing that would need to be addressed in the str() version is if bytesobj is a PEP 3118 character buffer, after which it falls back to bytesobj.decode(encoding, errors).  I will update the patch so people can see how it looks.
History
Date User Action Args
2012-10-15 17:27:03chris.jerdoneksetrecipients: + chris.jerdonek, terry.reedy, pitrou, ezio.melotti, eric.araujo, r.david.murray, docs@python, Guillaume.Bouchard
2012-10-15 17:27:03chris.jerdoneksetmessageid: <1350322023.08.0.276065644301.issue13538@psf.upfronthosting.co.za>
2012-10-15 17:27:03chris.jerdoneklinkissue13538 messages
2012-10-15 17:27:02chris.jerdonekcreate