COMMITS
/ Objects/unicodeobject.c October 18, 2020
October 17, 2020
M
bpo-42065: Fix incorrectly formatted _codecs.charmap_decode error message (GH-19940)
Max Bernstein committed
October 9, 2020
S
bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593)
Serhiy Storchaka committed
October 4, 2020
S
bpo-41909: Enable previously disabled recursion checks. (GH-22536)
Serhiy Storchaka committed
October 2, 2020
V
bpo-41692: Deprecate PyUnicode_InternImmortal() (GH-22486)
Victor Stinner committed
September 23, 2020
V
bpo-40521: Fix PyUnicode_InternInPlace() (GH-22376)
Victor Stinner committed
September 8, 2020
V
bpo-1635741: Port _string module to multi-phase init (GH-22148)
Victor Stinner committed
July 20, 2020
S
bpo-41334: Convert constructors of str, bytes and bytearray to Argument Clinic (GH-21535)
Serhiy Storchaka committed
July 10, 2020
S
bpo-36346: Make using the legacy Unicode C API optional (GH-21437)
Serhiy Storchaka committed
V
bpo-39573: Use the Py_TYPE() macro (GH-21433)
Victor Stinner committed
July 5, 2020
S
bpo-36346: Undeprecate private function _PyUnicode_AsUnicode(). (GH-21336)
Serhiy Storchaka committed
July 3, 2020
V
bpo-1635741: Fix unicode_dealloc() for mortal interned string (GH-21270)
Victor Stinner committed
July 1, 2020
V
bpo-1635741: Release Unicode interned strings at exit (GH-21269)
Victor Stinner committed
June 30, 2020
I
bpo-36346: Raise DeprecationWarning when creating legacy Unicode (GH-20933)
Inada Naoki committed
S
bpo-36346: Prepare for removing the legacy Unicode C API (AC only). (GH-21223)
Serhiy Storchaka committed
I
bpo-41123: Remove PyUnicode_AsUnicodeCopy (GH-21209)
Inada Naoki committed
June 29, 2020
S
bpo-37999: Simplify the conversion code for %c, %d, %x, etc. (GH-20437)
Serhiy Storchaka committed
I
bpo-41123: Remove PyUnicode_GetMax() (GH-21192)
Inada Naoki committed
June 27, 2020
I
bpo-41123: Remove Py_UNICODE_str* functions (GH-21164)
Inada Naoki committed
June 25, 2020
V
bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142)
Victor Stinner committed
June 24, 2020
V
bpo-40521: Make Unicode latin1 singletons per interpreter (GH-21101)
Victor Stinner committed
June 23, 2020
V
bpo-40521: Optimize PyUnicode_New(0, maxchar) (GH-21099)
Victor Stinner committed
V
bpo-40521: Make empty Unicode string per interpreter (GH-21096)
Victor Stinner committed
June 17, 2020
I
bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878)
Inada Naoki committed
June 15, 2020
V
bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901)
Victor Stinner committed
June 10, 2020
V
bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781)
Victor Stinner committed
June 7, 2020
V
bpo-40881: Fix unicode_release_interned() (GH-20699)
Victor Stinner committed
June 2, 2020
V
bpo-39465: Cleanup _PyUnicode_FromId() code (GH-20595)
Victor Stinner committed
May 28, 2020
S
bpo-40792: Make the result of PyNumber_Index() always having exact type int. (GH-20443)
Serhiy Storchaka committed
May 13, 2020
V
bpo-40521: Add PyInterpreterState.unicode (GH-20081)
Victor Stinner committed
V
bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078)
Victor Stinner committed
May 12, 2020
S
S
bpo-40593: Improve syntax errors for invalid characters in source code. (GH-20033)
Serhiy Storchaka committed
May 5, 2020
V
bpo-40521: Disable Unicode caches in isolated subinterpreters (GH-19933)
Victor Stinner committed
April 22, 2020
S
bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939)
sweeneyde committed
April 14, 2020
V
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner committed
V
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner committed
April 13, 2020
V
bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492)
Victor Stinner committed
April 12, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472)
Serhiy Storchaka committed
April 11, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345)
Serhiy Storchaka committed
April 8, 2020
V
bpo-40170: Add _PyIndex_Check() internal function (GH-19426)
Victor Stinner committed
April 7, 2020
V
bpo-37388: Don't check encoding/errors during finalization (GH-19409)
Victor Stinner committed
April 1, 2020
S
bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265)
Serhiy Storchaka committed
March 14, 2020
I
Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985)
Inada Naoki committed
I
bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659)
Inada Naoki committed
March 4, 2020
A
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester committed
February 27, 2020
I
bpo-39087: Optimize PyUnicode_AsUTF8AndSize() (GH-18327)
Inada Naoki committed
February 21, 2020
A
closes bpo-39684: Combine two if/thens and squash uninit var warning. (GH-18565)
Andy Lester committed
February 17, 2020
H
bpo-39500: Fix compile warnings in unicodeobject.c (GH-18519)
Hai Shi committed
February 12, 2020
V
bpo-35081: Move bytes_methods.h to the internal C API (GH-18492)
Victor Stinner committed