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 ezio.melotti, pitrou, vstinner
Date 2012-08-10.02:30:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344565830.56.0.384034899089.issue15612@psf.upfronthosting.co.za>
In-reply-to
Content
Attached patch rewrites the C implementation of StringIO to use the _PyUnicodeWriter API instead of the PyAccu API. It provides better performance when writing non-ASCII strings.

The patch adds new functions:

 - _PyUnicodeWriter_Truncate()
 - _PyUnicodeWriter_WriteStrAt()
 - _PyUnicodeWriter_GetValue()
History
Date User Action Args
2012-08-10 02:30:31vstinnersetrecipients: + vstinner, pitrou, ezio.melotti
2012-08-10 02:30:30vstinnersetmessageid: <1344565830.56.0.384034899089.issue15612@psf.upfronthosting.co.za>
2012-08-10 02:30:29vstinnerlinkissue15612 messages
2012-08-10 02:30:28vstinnercreate