| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixes loop variables to be the same types as their limit (GH-120958) | Steve Dower | 2024-06-24 | 1 | -1/+2 |
|
|
* | gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12... | Petr Viktorin | 2024-06-21 | 1 | -1/+2 |
|
|
* | gh-117557: Improve error messages when a string, bytes or bytearray of length... | Serhiy Storchaka | 2024-05-28 | 1 | -4/+30 |
|
|
* | gh-119213: Be More Careful About _PyArg_Parser.kwtuple Across Interpreters (g... | Eric Snow | 2024-05-22 | 1 | -2/+19 |
|
|
* | gh-68114: Fix handling for removed PyArg_ParseTuple 'w' formatters (GH-8204) | Joe Jevnik | 2024-04-23 | 1 | -0/+5 |
|
|
* | gh-116447: Fix possible UB in `arraymodule` and `getargs` (#116459) | Nikita Sobolev | 2024-03-08 | 1 | -2/+2 |
|
|
* | gh-107944: Improve error message for getargs with bad keyword arguments (#114... | Shantanu | 2024-02-08 | 1 | -12/+58 |
|
|
* | gh-65210: Add const qualifiers in PyArg_VaParseTupleAndKeywords() (GH-105958) | Serhiy Storchaka | 2023-12-04 | 1 | -8/+9 |
|
|
* | gh-112438: Fix support of format units with the "e" prefix in nested tuples i... | Serhiy Storchaka | 2023-11-27 | 1 | -1/+1 |
|
|
* | gh-112234: Remove the toplevel parameter in converttuple() (GH-112235) | Serhiy Storchaka | 2023-11-18 | 1 | -16/+6 |
|
|
* | gh-111956: Add thread-safe one-time initialization. (gh-111960) | Sam Gross | 2023-11-16 | 1 | -29/+17 |
|
|
* | gh-111089: Revert PyUnicode_AsUTF8() changes (#111833) | Victor Stinner | 2023-11-07 | 1 | -2/+6 |
|
|
* | gh-111089: Use PyUnicode_AsUTF8() in getargs.c (#111620) | Victor Stinner | 2023-11-01 | 1 | -6/+2 |
|
|
* | gh-67565: Remove redundant C-contiguity checks (GH-105521) | Furkan Onder | 2023-10-23 | 1 | -11/+6 |
|
|
* | gh-110964: Remove private _PyArg functions (#110966) | Victor Stinner | 2023-10-17 | 1 | -0/+1 |
|
|
* | gh-110864: Fix _PyArg_UnpackKeywordsWithVararg overwriting vararg with NULL (... | Nikita Sobolev | 2023-10-16 | 1 | -1/+1 |
|
|
* | gh-110815: Support non-ASCII keyword names in PyArg_ParseTupleAndKeywords() (... | Serhiy Storchaka | 2023-10-14 | 1 | -1/+1 |
|
|
* | gh-110079: Remove extern "C" { ...} in C code (#110080) | Victor Stinner | 2023-09-29 | 1 | -8/+0 |
|
|
* | gh-108765: Python.h no longer includes <ctype.h> (#108831) | Victor Stinner | 2023-09-03 | 1 | -4/+0 |
|
|
* | gh-106320: Remove private AC converter functions (#108505) | Victor Stinner | 2023-08-26 | 1 | -0/+1 |
|
|
* | gh-108308: Remove _PyDict_GetItemStringWithError() function (#108426) | Victor Stinner | 2023-08-24 | 1 | -28/+30 |
|
|
* | gh-107196: Remove _PyArg_VaParseTupleAndKeywordsFast() function (#107197) | Victor Stinner | 2023-07-27 | 1 | -14/+0 |
|
|
* | gh-106320: Remove private _PyDict C API (#107145) | Victor Stinner | 2023-07-24 | 1 | -1/+2 |
|
|
* | gh-92536: Remove PyUnicode_READY() calls (#105210) | Victor Stinner | 2023-06-01 | 1 | -5/+0 |
|
|
* | gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051) | Inada Naoki | 2023-05-31 | 1 | -84/+16 |
|
|
* | gh-99240: Reset pointer to NULL when the pointed memory is freed in argument ... | colorfulappl | 2022-12-17 | 1 | -5/+5 |
|
|
* | gh-64490: Fix bugs in argument clinic varargs processing (#32092) | colorfulappl | 2022-11-24 | 1 | -1/+19 |
|
|
* | gh-81057: Move Globals in Core Code to _PyRuntimeState (gh-99496) | Eric Snow | 2022-11-15 | 1 | -7/+4 |
|
|
* | gh-99300: Use Py_NewRef() in Python/ directory (#99302) | Victor Stinner | 2022-11-10 | 1 | -4/+2 |
|
|
* | GH-95909: Make `_PyArg_Parser` initialization thread safe (GH-95958) | Kumar Aditya | 2022-08-16 | 1 | -6/+23 |
|
|
* | gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (... | Eric Snow | 2022-08-11 | 1 | -81/+149 |
|
|
* | gh-94938: Fix errror detection of unexpected keyword arguments (GH-94999) | Serhiy Storchaka | 2022-07-28 | 1 | -85/+57 |
|
|
* | gh-94930: skipitem() in getargs.c should return non-NULL on error (GH-94931) | Serhiy Storchaka | 2022-07-18 | 1 | -3/+1 |
|
|
* | GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215) | Kumar Aditya | 2022-05-27 | 1 | -8/+0 |
|
|
* | gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537) | Inada Naoki | 2022-05-12 | 1 | -54/+0 |
|
|
* | bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580) | Victor Stinner | 2022-02-25 | 1 | -0/+1 |
|
|
* | bpo-20291: Fix MSVC warnings in getargs.c (GH-27211) | Ken Jin | 2021-07-17 | 1 | -1/+2 |
|
|
* | bpo-20201: variadic arguments support for AC (GH-18609) | Batuhan Taskaya | 2021-07-16 | 1 | -0/+160 |
|
|
* | bpo-40943: Fix skipitem() didn't raise SystemError (GH-25937) | Inada Naoki | 2021-05-07 | 1 | -8/+5 |
|
|
* | bpo-43321: Fix SystemError in getargs.c (GH-24656) | Inada Naoki | 2021-02-27 | 1 | -2/+2 |
|
|
* | bpo-36346: Emit DeprecationWarning for PyArg_Parse() with 'u' or 'Z'. (GH-20927) | Inada Naoki | 2021-02-22 | 1 | -1/+4 |
|
|
* | bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) | Victor Stinner | 2020-12-01 | 1 | -2/+2 |
|
|
* | bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056) | Victor Stinner | 2020-06-22 | 1 | -1/+1 |
|
|
* | bpo-40943: PY_SSIZE_T_CLEAN required for '#' formats (GH-20784) | Victor Stinner | 2020-06-19 | 1 | -62/+27 |
|
|
* | bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878) | Inada Naoki | 2020-06-17 | 1 | -0/+4 |
|
|
* | bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781) | Victor Stinner | 2020-06-10 | 1 | -4/+3 |
|
|
* | bpo-40792: Make the result of PyNumber_Index() always having exact type int. ... | Serhiy Storchaka | 2020-05-28 | 1 | -1/+1 |
|
|
* | bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636) | Serhiy Storchaka | 2020-05-26 | 1 | -54/+12 |
|
|
* | bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data.... | Serhiy Storchaka | 2020-04-11 | 1 | -1/+1 |
|
|
* | bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) | Dong-hee Na | 2020-03-16 | 1 | -1/+18 |
|
|