]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-144175: Add PyArg_ParseArray() function (#144283)
authorVictor Stinner <vstinner@python.org>
Fri, 6 Mar 2026 21:57:44 +0000 (22:57 +0100)
committerGitHub <noreply@github.com>
Fri, 6 Mar 2026 21:57:44 +0000 (21:57 +0000)
commit9159287f58f7a5a7e59edffaf3094ea62e1633eb
treebc0da9a6a6a8ce5d53702244c82c33942a7180b2
parentc1d77683213c400fca144692654845e6f5418981
gh-144175: Add PyArg_ParseArray() function (#144283)

Add PyArg_ParseArray() and PyArg_ParseArrayAndKeywords()
functions to parse arguments of functions using the METH_FASTCALL
calling convention.

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Doc/c-api/arg.rst
Doc/whatsnew/3.15.rst
Include/cpython/modsupport.h
Lib/test/test_capi/test_modsupport.py
Misc/NEWS.d/next/C_API/2026-01-27-18-15-15.gh-issue-144175.qHK5Jf.rst [new file with mode: 0644]
Modules/_testcapi/modsupport.c
Python/getargs.c