aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/codecs.c
Commit message (Expand)AuthorAge
* gh-131238: Add explicit includes to pycore headers (#131257)Victor Stinner2025-03-17
* gh-130790: Remove references about unicode's readiness from comments (#130801)Sergey Miryanov2025-03-03
* gh-129173: refactor `PyCodec_BackslashReplaceErrors` into separate functions ...Bénédikt Tran2025-03-03
* gh-129173: simplify `PyCodec_XMLCharRefReplaceErrors` logic (#129894)Bénédikt Tran2025-03-03
* gh-129173: refactor `PyCodec_ReplaceErrors` into separate functions (#129893)Bénédikt Tran2025-02-25
* gh-129173: Use `_PyUnicodeError_GetParams` in `PyCodec_SurrogateEscapeErrors`...Bénédikt Tran2025-02-20
* gh-129173: Use `_PyUnicodeError_GetParams` in `PyCodec_SurrogatePassErrors` (...Bénédikt Tran2025-02-14
* gh-129173: Use `_PyUnicodeError_GetParams` in `PyCodec_NameReplaceErrors` (GH...Bénédikt Tran2025-02-08
* gh-129173: Use `_PyUnicodeError_GetParams` in `PyCodec_IgnoreErrors` (#129174)Bénédikt Tran2025-01-24
* gh-126004: Fix positions handling in `codecs.backslashreplace_errors` (#127676)Bénédikt Tran2025-01-23
* gh-126004: Fix positions handling in `codecs.replace_errors` (#127674)Bénédikt Tran2025-01-23
* gh-126004: Fix positions handling in `codecs.xmlcharrefreplace_errors` (#127675)Bénédikt Tran2025-01-23
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)Victor Stinner2024-10-09
* gh-124665: Add `_PyCodec_UnregisterError` and `_codecs._unregister_error` (#1...Bénédikt Tran2024-09-29
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-21
* gh-116738: Make `_codecs` module thread-safe (#117530)Brett Simmers2024-05-02
* gh-111972: Make Unicode name C APIcapsule initialization thread-safe (#112249)Kirill Podoprigora2023-11-30
* gh-111789: Use PyDict_GetItemRef() in Python/codecs.c (gh-112082)Serhiy Storchaka2023-11-27
* gh-108765: Python.h no longer includes <ctype.h> (#108831)Victor Stinner2023-09-03
* gh-108308: Replace _PyDict_GetItemStringWithError() (#108372)Victor Stinner2023-08-23
* gh-106320: Remove _PyDict_GetItemStringWithError() function (#108313)Victor Stinner2023-08-22
* gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)Serhiy Storchaka2023-07-12
* gh-106320: Use _PyInterpreterState_GET() (#106336)Victor Stinner2023-07-02
* gh-77757: replace exception wrapping by PEP-678 notes in typeobject's __set_n...Irit Katriel2023-04-11
* gh-102406: replace exception chaining by PEP-678 notes in codecs (#102407)Irit Katriel2023-03-21
* gh-99300: Replace Py_INCREF() with Py_NewRef() (#99530)Victor Stinner2022-11-16
* gh-99300: Use Py_NewRef() in Python/ directory (#99302)Victor Stinner2022-11-10
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-08
* bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...Kumar Aditya2021-12-12
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-12
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-12
* bpo-42157: unicodedata avoids references to UCD_Type (GH-22990)Victor Stinner2020-10-26
* bpo-1635741: _PyUnicode_Name_CAPI moves to internal C API (GH-22713)Victor Stinner2020-10-26
* bpo-41919, test_codecs: Move codecs.register calls to setUp() (GH-22513)Hai Shi2020-10-16
* bpo-41842: Add codecs.unregister() function (GH-22360)Hai Shi2020-09-28
* bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner2020-04-14
* bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)Victor Stinner2020-04-14
* bpo-40268: Include explicitly pycore_interp.h (GH-19505)Victor Stinner2020-04-14
* bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka2020-04-11
* bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978)Victor Stinner2020-03-13
* closes bpo-39630: Update pointers to string literals to be const char *. (GH-...Andy Lester2020-02-13
* bpo-39245: Switch to public API for Vectorcall (GH-18460)Petr Viktorin2020-02-11
* bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)Victor Stinner2020-02-07
* bpo-38631: Avoid Py_FatalError() in _PyCodecRegistry_Init() (GH-18217)Victor Stinner2020-01-27
* bpo-37751: Fix codecs.lookup() normalization (GH-15092)Jordon Xu2019-08-21
* bpo-29548: no longer use PyEval_Call* functions (GH-14683)Jeroen Demeyer2019-07-12
* bpo-37483: fix reference leak in _PyCodec_Lookup (GH-14600)Jeroen Demeyer2019-07-05
* bpo-37483: add _PyObject_CallOneArg() function (#14558)Jeroen Demeyer2019-07-04
* bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-25
* bpo-35454: Fix miscellaneous minor issues in error handling. (#11077)Serhiy Storchaka2018-12-11