| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-112136: Restore removed _PyArg_Parser (#121262) | Victor Stinner | 2024-07-03 | 1 | -0/+6 |
|
|
* | gh-65210: Add const qualifiers in PyArg_VaParseTupleAndKeywords() (GH-105958) | Serhiy Storchaka | 2023-12-04 | 1 | -2/+2 |
|
|
* | gh-110964: Remove private _PyArg functions (#110966) | Victor Stinner | 2023-10-17 | 1 | -6/+0 |
|
|
* | gh-108765: Move standard includes to Python.h (#108769) | Victor Stinner | 2023-09-01 | 1 | -4/+1 |
|
|
* | gh-108634: Py_TRACE_REFS uses a hash table (#108663) | Victor Stinner | 2023-08-31 | 1 | -8/+0 |
|
|
* | gh-107226: PyModule_AddObjectRef() should only be in the limited API 3.10 (GH... | Serhiy Storchaka | 2023-07-25 | 1 | -0/+2 |
|
|
* | bpo-42327: C API: Add PyModule_Add() function (GH-23443) | Serhiy Storchaka | 2023-07-18 | 1 | -3/+9 |
|
|
* | gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051) | Inada Naoki | 2023-05-31 | 1 | -20/+3 |
|
|
* | gh-87347: Add parenthesis around macro arguments (#93915) | Victor Stinner | 2022-06-20 | 1 | -6/+6 |
|
|
* | Remove ANY_VARARGS() macro from the C API (#93764) | Victor Stinner | 2022-06-13 | 1 | -2/+0 |
|
|
* | gh-79315: Add Include/cpython/modsupport.h header (#91797) | Victor Stinner | 2022-04-21 | 1 | -106/+6 |
|
|
* | bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580) | Victor Stinner | 2022-02-25 | 1 | -2/+0 |
|
|
* | bpo-45459: C API uses type names rather than structure names (GH-31528) | Victor Stinner | 2022-02-24 | 1 | -4/+2 |
|
|
* | bpo-45434: bytearrayobject.h no longer includes <stdarg.h> (GH-28913) | Victor Stinner | 2021-10-13 | 1 | -1/+1 |
|
|
* | bpo-20201: variadic arguments support for AC (GH-18609) | Batuhan Taskaya | 2021-07-16 | 1 | -1/+10 |
|
|
* | bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122) | Victor Stinner | 2020-11-04 | 1 | -1/+9 |
|
|
* | bpo-40024: Add PyModule_AddType() helper function (GH-19088) | Dong-hee Na | 2020-03-22 | 1 | -0/+4 |
|
|
* | bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) | Dong-hee Na | 2020-03-16 | 1 | -0/+3 |
|
|
* | bpo-37034: Display argument name on errors with keyword arguments with Argume... | Rémi Lapeyre | 2019-08-29 | 1 | -1/+1 |
|
|
* | bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1... | Serhiy Storchaka | 2019-03-14 | 1 | -0/+12 |
|
|
* | bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G... | Serhiy Storchaka | 2019-01-11 | 1 | -1/+6 |
|
|
* | bpo-23867: Argument Clinic: inline parsing code for a single positional param... | Serhiy Storchaka | 2018-12-25 | 1 | -0/+2 |
|
|
* | bpo-32240: Add the const qualifier to declarations of PyObject* array argumen... | Serhiy Storchaka | 2017-12-15 | 1 | -3/+3 |
|
|
* | bpo-28411: Isolate PyInterpreterState.modules (#3575) | Eric Snow | 2017-09-14 | 1 | -0/+4 |
|
|
* | bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) | Eric Snow | 2017-09-14 | 1 | -4/+0 |
|
|
* | bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638) | Eric Snow | 2017-09-04 | 1 | -0/+4 |
|
|
* | Remove _PyArg_NoStackKeywords(). (#2641) | Serhiy Storchaka | 2017-07-10 | 1 | -3/+0 |
|
|
* | Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and | Serhiy Storchaka | 2017-02-06 | 1 | -0/+7 |
|
|
* | Issue #29083: Fixed the declaration of some public API functions. | Serhiy Storchaka | 2017-01-24 | 1 | -7/+5 |
|\ |
|
| * | Issue #29083: Fixed the declaration of some public API functions. | Serhiy Storchaka | 2017-01-24 | 1 | -7/+5 |
| |\ |
|
| | * | Issue #29083: Fixed the declaration of some public API functions. | Serhiy Storchaka | 2017-01-24 | 1 | -5/+5 |
|
|
* | | | Add _PyArg_UnpackStack() function helper | Victor Stinner | 2017-01-17 | 1 | -0/+10 |
|
|
* | | | Add _PyArg_NoStackKeywords() helper function | Victor Stinner | 2017-01-17 | 1 | -1/+2 |
|
|
* | | | Add _PyArg_ParseStack() helper function | Victor Stinner | 2017-01-17 | 1 | -3/+13 |
|
|
* | | | Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords | Victor Stinner | 2017-01-17 | 1 | -2/+2 |
|
|
* | | | Issue #28915: Exclude _Py_VaBuildStack from the limited API. | Serhiy Storchaka | 2016-12-27 | 1 | -0/+4 |
|
|
* | | | Add _Py_VaBuildStack() function | Victor Stinner | 2016-12-08 | 1 | -0/+13 |
|
|
* | | | Issue #28748: Private variable _Py_PackageContext is now of type "const char *" | Serhiy Storchaka | 2016-11-21 | 1 | -1/+1 |
|/ / |
|
* | | Issue #26900: Excluded underscored names and other private API from limited API. | Serhiy Storchaka | 2016-09-11 | 1 | -0/+4 |
|
|
* | | Emit METH_FASTCALL code in Argument Clinic | Victor Stinner | 2016-09-10 | 1 | -0/+3 |
|
|
* | | Issue #27574: Decreased an overhead of parsing keyword arguments in functions | Serhiy Storchaka | 2016-08-14 | 1 | -0/+23 |
|/ |
|
* | Issue 24365: Conditionalize PEP 489 additions to the stable ABI | Yury Selivanov | 2015-06-02 | 1 | -1/+8 |
|
|
* | PEP 489: Multi-phase extension module initialization | Nick Coghlan | 2015-05-23 | 1 | -23/+39 |
|
|
* | Issue #20294: Argument Clinic now supports argument parsing for __new__ and | Larry Hastings | 2014-01-19 | 1 | -0/+1 |
|
|
* | remove support GCC PyArg_ParseTuple format patch, last seen in 2006 | Benjamin Peterson | 2013-05-13 | 1 | -1/+1 |
|
|
* | Issue #11626: Add _SizeT functions to stable ABI. | Martin v. Löwis | 2012-06-23 | 1 | -1/+4 |
|
|
* | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 1 | -0/+15 |
|
|
* | prevent the dict constructor from accepting non-string keyword args #8419 | Benjamin Peterson | 2010-04-24 | 1 | -0/+1 |
|
|
* | #5735: Modules compiled with incompatible settings (--with-pydebug when pytho... | Amaury Forgeot d'Arc | 2009-06-01 | 1 | -2/+2 |
|
|
* | Issue #6012: Add cleanup support to O& argument parsing. | Martin v. Löwis | 2009-05-29 | 1 | -0/+2 |
|
|