index
:
cpython
3.10
3.11
3.12
3.13
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Objects
/
stringlib
/
codecs.h
Commit message (
Expand
)
Author
Age
*
gh-121040: Use __attribute__((fallthrough)) (#121044)
Victor Stinner
2024-06-27
*
gh-92536: Remove PyUnicode_READY() calls (#105210)
Victor Stinner
2023-06-02
*
bpo-36819: Fix crashes in built-in encoders with weird error handlers (GH-28593)
Serhiy Storchaka
2022-05-02
*
bpo-43179: Generalise alignment for optimised string routines (GH-24624)
Jessica Clarke
2021-03-31
*
bpo-38252: Use 8-byte step to detect ASCII sequence in 64bit Windows build (G...
Ma Lin
2020-10-18
*
bpo-29882: Add _Py_popcount32() function (GH-20518)
Victor Stinner
2020-06-08
*
bpo-40302: UTF-32 encoder SWAB4() macro use a|b rather than a+b (GH-19572)
Victor Stinner
2020-04-17
*
bpo-40302: Add pycore_byteswap.h header file (GH-19552)
Victor Stinner
2020-04-17
*
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....
Serhiy Storchaka
2020-04-11
*
Update some www.unicode.org URLs to use HTTPS. (GH-18912)
Benjamin Peterson
2020-03-10
*
bpo-39087: Optimize PyUnicode_AsUTF8AndSize() (GH-18327)
Inada Naoki
2020-02-27
*
closes bpo-39605: Fix some casts to not cast away const. (GH-18453)
Andy Lester
2020-02-11
*
bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304)
Serhiy Storchaka
2019-06-25
*
bpo-36775: _PyCoreConfig only uses wchar_t* (GH-13062)
Victor Stinner
2019-05-02
*
bpo-34523: Support surrogatepass in locale codecs (GH-8995)
Victor Stinner
2018-08-29
*
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...
Stefan Krah
2017-08-21
*
Issue #28561: Clean up UTF-8 encoder: remove dead code, update comments, etc.
Serhiy Storchaka
2016-10-30
*
PEP 7 style for if/else in C
Victor Stinner
2016-09-02
*
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Raymond Hettinger
2016-08-30
*
Issue #26765: Ensure that bytes- and unicode-specific stringlib files are used
Serhiy Storchaka
2016-05-16
*
Optimize error handlers of ASCII and Latin1 encoders when the replacement
Victor Stinner
2015-10-09
*
Add _PyBytesWriter_WriteBytes() to factorize the code
Victor Stinner
2015-10-09
*
_PyBytesWriter: simplify code to avoid "prealloc" parameters
Victor Stinner
2015-10-09
*
Optimize backslashreplace error handler
Victor Stinner
2015-10-09
*
Issue #25318: Add _PyBytesWriter API
Victor Stinner
2015-10-09
*
Issue #25267: The UTF-8 encoder is now up to 75 times as fast for error
Victor Stinner
2015-10-01
*
Fixed typos in comments.
Serhiy Storchaka
2015-05-18
|
\
|
*
Fixed typos in comments.
Serhiy Storchaka
2015-05-18
*
|
Issue #15027: The UTF-32 encoder is now 3x to 7x faster.
Serhiy Storchaka
2015-05-12
|
/
*
Reverted changeset b72c5573c5e7 (issue #15027).
Serhiy Storchaka
2014-01-04
*
Issue #15027: Rewrite the UTF-32 encoder. It is now 1.6x to 3.5x faster.
Serhiy Storchaka
2014-01-04
*
Remove dead code committed in issue #12892.
Serhiy Storchaka
2013-11-19
*
Issue #12892: The utf-16* and utf-32* codecs now reject (lone) surrogates.
Serhiy Storchaka
2013-11-19
*
Issue #18722: Remove uses of the "register" keyword in C code.
Antoine Pitrou
2013-08-13
*
(Merge 3.3) Issue #8271: Fix compilation on Windows
Victor Stinner
2012-11-05
|
\
|
*
Issue #8271: Fix compilation on Windows
Victor Stinner
2012-11-04
*
|
#8271: merge with 3.3.
Ezio Melotti
2012-11-04
|
\
|
|
*
#8271: the utf-8 decoder now outputs the correct number of U+FFFD characters...
Ezio Melotti
2012-11-04
*
|
Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified
Christian Heimes
2012-10-17
|
/
*
Issue #15144: Fix possible integer overflow when handling pointers as integer...
Antoine Pitrou
2012-09-20
*
Use correct types for ASCII_CHAR_MASK integer constants.
Mark Dickinson
2012-07-07
*
Issue #14923: Optimize continuation-byte check in UTF-8 decoding. Patch by S...
Mark Dickinson
2012-06-23
*
Issue #15026: utf-16 encoding is now significantly faster (up to 10x).
Antoine Pitrou
2012-06-15
*
Issue #14624: UTF-16 decoding is now 3x to 4x faster on various inputs.
Antoine Pitrou
2012-05-15
*
Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy Sto...
Antoine Pitrou
2012-05-10
*
Issue #13624: Write a specialized UTF-8 encoder to allow more optimization
Victor Stinner
2011-12-18
*
Issue #13417: speed up utf-8 decoding by around 2x for the non-fully-ASCII case.
Antoine Pitrou
2011-11-21