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 ezio.melotti, pitrou, vstinner
Date 2012-08-11.16:19:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344701976.45.0.978427314848.issue15612@psf.upfronthosting.co.za>
In-reply-to
Content
> _PyUnicodeWriter is almost always faster

Actually, PyAccu is consistently faster for the "writer" case, while _PyUnicodeWriter is faster for the "writer-reader" case.
This is not because of PyAccu, but because of the way StringIO uses it: when e.g. readline() is called, the PyAccu result is converted into a PyUCS4* buffer, then each readline() result is converted again by finding the max char in the sub-buffer.

So I would suggest using PyAccu, but converting its result to a _PyUnicodeWriter rather than a PyUCS4* buffer.
History
Date User Action Args
2012-08-11 16:19:36pitrousetrecipients: + pitrou, vstinner, ezio.melotti
2012-08-11 16:19:36pitrousetmessageid: <1344701976.45.0.978427314848.issue15612@psf.upfronthosting.co.za>
2012-08-11 16:19:35pitroulinkissue15612 messages
2012-08-11 16:19:35pitroucreate