summaryrefslogtreecommitdiffstats
path: root/Modules/_testclinic_limited.c
Commit message (Collapse)AuthorAgeFilesLines
* gh-108494: AC supports pos-only args in limited C API (#108498)Victor Stinner2023-08-251-0/+18
| | | | AC now checks for "#define Py_LIMITED_API" pattern to use the limited C API.
* gh-108494: Argument Clinic partial supports of Limited C API (#108495)Victor Stinner2023-08-251-0/+69
Argument Clinic now has a partial support of the Limited API: * Add --limited option to clinic.c. * Add '_testclinic_limited' extension which is built with the limited C API version 3.13. * For now, hardcode in clinic.py that "_testclinic_limited.c" targets the limited C API.