summaryrefslogtreecommitdiff
path: root/Objects/stringlib/codecs.h
Commit message (Expand)AuthorAgeFilesLines
* Issue #28561: Clean up UTF-8 encoder: remove dead code, update comments, etc.Serhiy Storchaka2016-10-301-10/+4
* PEP 7 style for if/else in CVictor Stinner2016-09-021-1/+2
* Issue #27895: Spelling fixes (Contributed by Ville Skytt?).Raymond Hettinger2016-08-301-3/+3
* Issue #26765: Ensure that bytes- and unicode-specific stringlib files are usedSerhiy Storchaka2016-05-161-3/+3
* Optimize error handlers of ASCII and Latin1 encoders when the replacementVictor Stinner2015-10-091-11/+7
* Add _PyBytesWriter_WriteBytes() to factorize the codeVictor Stinner2015-10-091-11/+11
* _PyBytesWriter: simplify code to avoid "prealloc" parametersVictor Stinner2015-10-091-8/+12
* Optimize backslashreplace error handlerVictor Stinner2015-10-091-2/+16
* Issue #25318: Add _PyBytesWriter APIVictor Stinner2015-10-091-63/+21
* Issue #25267: The UTF-8 encoder is now up to 75 times as fast for errorVictor Stinner2015-10-011-51/+96
* Fixed typos in comments.Serhiy Storchaka2015-05-181-4/+4
|\
| * Fixed typos in comments.Serhiy Storchaka2015-05-181-2/+2
* | Issue #15027: The UTF-32 encoder is now 3x to 7x faster.Serhiy Storchaka2015-05-121-0/+87
|/
* Reverted changeset b72c5573c5e7 (issue #15027).Serhiy Storchaka2014-01-041-87/+0
* Issue #15027: Rewrite the UTF-32 encoder. It is now 1.6x to 3.5x faster.Serhiy Storchaka2014-01-041-0/+87
* Remove dead code committed in issue #12892.Serhiy Storchaka2013-11-191-104/+0
* Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates.Serhiy Storchaka2013-11-191-16/+182
* Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-131-3/+3
* (Merge 3.3) Issue #8271: Fix compilation on WindowsVictor Stinner2012-11-051-3/+3
|\
| * #8271: merge with 3.3.Ezio Melotti2012-11-041-30/+62
| |\
| * | Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unifiedChristian Heimes2012-10-171-3/+3
* | | Issue #8271: Fix compilation on WindowsVictor Stinner2012-11-041-1/+1
| |/ |/|
* | #8271: the utf-8 decoder now outputs the correct number of U+FFFD characters...Ezio Melotti2012-11-041-30/+62
|/
* Issue #15144: Fix possible integer overflow when handling pointers as integer...Antoine Pitrou2012-09-201-9/+5
* Use correct types for ASCII_CHAR_MASK integer constants.Mark Dickinson2012-07-071-2/+2
* Issue #14923: Optimize continuation-byte check in UTF-8 decoding. Patch by S...Mark Dickinson2012-06-231-6/+10
* Issue #15026: utf-16 encoding is now significantly faster (up to 10x).Antoine Pitrou2012-06-151-0/+64
* Issue #14624: UTF-16 decoding is now 3x to 4x faster on various inputs.Antoine Pitrou2012-05-151-1/+148
* Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy Sto...Antoine Pitrou2012-05-101-78/+143
* Issue #13624: Write a specialized UTF-8 encoder to allow more optimizationVictor Stinner2011-12-181-0/+197
* Issue #13417: speed up utf-8 decoding by around 2x for the non-fully-ASCII case.Antoine Pitrou2011-11-211-0/+156