Message251845
Attached patch optimizes the UTF-8 encoder for error handlers: ignore, replace, surrogateescape, surrogatepass. It is based on the patch faster_surrogates_hadling.patch written by Serhiy Storchaka in the issue #24870.
It also modifies unicode_encode_ucs1() to use memset() for the replace error handler. It should be faster for long sequences of unencodable characters, but it may be slower for short sequences of unencodable characters.
The patch adds new unit tests and fix unit tests to ensure that utf-8-sig codec is also well tested.
TODO: write a benchmark.
See also the issue #25227 which optimized ASCII and latin1 encoders with the surrogateescape error handlers. |
|
Date |
User |
Action |
Args |
2015-09-29 11:30:34 | vstinner | set | recipients:
+ vstinner, ezio.melotti, methane, serhiy.storchaka |
2015-09-29 11:30:34 | vstinner | set | messageid: <1443526234.91.0.845116536507.issue25267@psf.upfronthosting.co.za> |
2015-09-29 11:30:34 | vstinner | link | issue25267 messages |
2015-09-29 11:30:34 | vstinner | create | |
|