summaryrefslogtreecommitdiffstats
path: root/Include/modsupport.h
Commit message (Expand)AuthorAgeFilesLines
* gh-65210: Add const qualifiers in PyArg_VaParseTupleAndKeywords() (GH-105958)Serhiy Storchaka2023-12-041-2/+2
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-6/+0
* gh-108765: Move standard includes to Python.h (#108769)Victor Stinner2023-09-011-4/+1
* gh-108634: Py_TRACE_REFS uses a hash table (#108663)Victor Stinner2023-08-311-8/+0
* gh-107226: PyModule_AddObjectRef() should only be in the limited API 3.10 (GH...Serhiy Storchaka2023-07-251-0/+2
* bpo-42327: C API: Add PyModule_Add() function (GH-23443)Serhiy Storchaka2023-07-181-3/+9
* gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)Inada Naoki2023-05-311-20/+3
* gh-87347: Add parenthesis around macro arguments (#93915)Victor Stinner2022-06-201-6/+6
* Remove ANY_VARARGS() macro from the C API (#93764)Victor Stinner2022-06-131-2/+0
* gh-79315: Add Include/cpython/modsupport.h header (#91797)Victor Stinner2022-04-211-106/+6
* bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580)Victor Stinner2022-02-251-2/+0
* bpo-45459: C API uses type names rather than structure names (GH-31528)Victor Stinner2022-02-241-4/+2
* bpo-45434: bytearrayobject.h no longer includes <stdarg.h> (GH-28913)Victor Stinner2021-10-131-1/+1
* bpo-20201: variadic arguments support for AC (GH-18609)Batuhan Taskaya2021-07-161-1/+10
* bpo-1635741: Add PyModule_AddObjectRef() function (GH-23122)Victor Stinner2020-11-041-1/+9
* bpo-40024: Add PyModule_AddType() helper function (GH-19088)Dong-hee Na2020-03-221-0/+4
* bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980)Dong-hee Na2020-03-161-0/+3
* bpo-37034: Display argument name on errors with keyword arguments with Argume...Rémi Lapeyre2019-08-291-1/+1
* bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...Serhiy Storchaka2019-03-141-0/+12
* bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G...Serhiy Storchaka2019-01-111-1/+6
* bpo-23867: Argument Clinic: inline parsing code for a single positional param...Serhiy Storchaka2018-12-251-0/+2
* bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka2017-12-151-3/+3
* bpo-28411: Isolate PyInterpreterState.modules (#3575)Eric Snow2017-09-141-0/+4
* bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)Eric Snow2017-09-141-4/+0
* bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)Eric Snow2017-09-041-0/+4
* Remove _PyArg_NoStackKeywords(). (#2641)Serhiy Storchaka2017-07-101-3/+0
* Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() andSerhiy Storchaka2017-02-061-0/+7
* Issue #29083: Fixed the declaration of some public API functions.Serhiy Storchaka2017-01-241-7/+5
|\
| * Issue #29083: Fixed the declaration of some public API functions.Serhiy Storchaka2017-01-241-7/+5
| |\
| | * Issue #29083: Fixed the declaration of some public API functions.Serhiy Storchaka2017-01-241-5/+5
* | | Add _PyArg_UnpackStack() function helperVictor Stinner2017-01-171-0/+10
* | | Add _PyArg_NoStackKeywords() helper functionVictor Stinner2017-01-171-1/+2
* | | Add _PyArg_ParseStack() helper functionVictor Stinner2017-01-171-3/+13
* | | Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywordsVictor Stinner2017-01-171-2/+2
* | | Issue #28915: Exclude _Py_VaBuildStack from the limited API.Serhiy Storchaka2016-12-271-0/+4
* | | Add _Py_VaBuildStack() functionVictor Stinner2016-12-081-0/+13
* | | Issue #28748: Private variable _Py_PackageContext is now of type "const char *"Serhiy Storchaka2016-11-211-1/+1
|/ /
* | Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-111-0/+4
* | Emit METH_FASTCALL code in Argument ClinicVictor Stinner2016-09-101-0/+3
* | Issue #27574: Decreased an overhead of parsing keyword arguments in functionsSerhiy Storchaka2016-08-141-0/+23
|/
* Issue 24365: Conditionalize PEP 489 additions to the stable ABIYury Selivanov2015-06-021-1/+8
* PEP 489: Multi-phase extension module initializationNick Coghlan2015-05-231-23/+39
* Issue #20294: Argument Clinic now supports argument parsing for __new__ andLarry Hastings2014-01-191-0/+1
* remove support GCC PyArg_ParseTuple format patch, last seen in 2006Benjamin Peterson2013-05-131-1/+1
* Issue #11626: Add _SizeT functions to stable ABI.Martin v. Löwis2012-06-231-1/+4
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-0/+15
* prevent the dict constructor from accepting non-string keyword args #8419Benjamin Peterson2010-04-241-0/+1
* #5735: Modules compiled with incompatible settings (--with-pydebug when pytho...Amaury Forgeot d'Arc2009-06-011-2/+2
* Issue #6012: Add cleanup support to O& argument parsing.Martin v. Löwis2009-05-291-0/+2
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-30/+6