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 lemburg
Recipients lemburg, pitrou, vstinner
Date 2010-06-07.22:05:28
SpamBayes Score 0.056028537
Marked as misclassified No
Message-id <4C0D6D26.402@egenix.com>
In-reply-to <1275948012.87.0.376828447686.issue8922@psf.upfronthosting.co.za>
Content
STINNER Victor wrote:
> 
> STINNER Victor <victor.stinner@haypocalc.com> added the comment:
> 
>> the shortcuts were meant for Python internal use only
> 
> str.encode() calls PyUnicode_AsEncodedString() and bytes.decode() calls PyUnicode_Decode(), so it is not for internal use only. Eg. "text".encode("ASCII") doesn't use the fastpath.

Right. As I said: the *shortcuts* are meant for internal use
only. External code should not rely on them, but can, of course,
use those canonical names as well.

Note that these shortcut bypass the codec registry logic. Codec
search functions cannot redirect these shortcuts to their
own implementations, so we have to be careful about adding more
such shortcuts.
History
Date User Action Args
2010-06-07 22:05:30lemburgsetrecipients: + lemburg, pitrou, vstinner
2010-06-07 22:05:28lemburglinkissue8922 messages
2010-06-07 22:05:28lemburgcreate