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, python-dev, serhiy.storchaka, vstinner
Date 2015-10-08.23:04:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1444345455.73.0.249241941207.issue25318@psf.upfronthosting.co.za>
In-reply-to
Content
Oh, I was surprised to see same or worse performances for UTF-8/backslashreplace. In fact, I forgot to enable overallocation. With overallocation, it is now faster ;-)

I modified the API to put the "stack buffer" inside _PyBytesWriter API directly. I also reworked _PyBytesWriter_Alloc() to call  _PyBytesWriter_Prepare() so _PyBytesWriter_Alloc() now supports overallocation as well. It was part of _PyBytesWriter design to support overallocation at the first allocation (_PyBytesWriter_Alloc), that's why we have _PyBytesWriter_Alloc() *and* _PyBytesWriter_Init(): it's possible to set overallocate=1 between init and alloc.

I pushed my change since it didn't kill performances. It's only a little bit smaller but on very short encode: less than 500 ns. In other cases, it's the same performances or faster.
History
Date User Action Args
2015-10-08 23:04:15vstinnersetrecipients: + vstinner, ezio.melotti, python-dev, serhiy.storchaka
2015-10-08 23:04:15vstinnersetmessageid: <1444345455.73.0.249241941207.issue25318@psf.upfronthosting.co.za>
2015-10-08 23:04:15vstinnerlinkissue25318 messages
2015-10-08 23:04:15vstinnercreate