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 vstinner
Recipients pitrou, vstinner
Date 2009-03-26.17:52:38
SpamBayes Score 2.9163099e-09
Marked as misclassified No
Message-id <1238089961.81.0.442638822523.issue5006@psf.upfronthosting.co.za>
In-reply-to
Content
Faster patch!
 - add fast encoder for UTF-32, UTF-32-LE and UTF-32-BE (copy/paste of 
utf16 functions)
 - move utf-8 before utf-16-* because utf8 more popular than utf16 :-p
 - don't set self->encodefunc=NULL (loose all the encoder 
optimisation), but only fix self->encodefunc for two special cases: 
utf16=>utf16le or utf16be and utf32=>utf32le or utf32be
 - remove self->ok: it was may be usefull for an older version of my 
patch, but it's not more needed
History
Date User Action Args
2009-03-26 17:52:41vstinnersetrecipients: + vstinner, pitrou
2009-03-26 17:52:41vstinnersetmessageid: <1238089961.81.0.442638822523.issue5006@psf.upfronthosting.co.za>
2009-03-26 17:52:40vstinnerlinkissue5006 messages
2009-03-26 17:52:40vstinnercreate