mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)
This commit is contained in:
parent
cc9160a29b
commit
656dad702d
18 changed files with 152 additions and 13 deletions
|
@ -1047,3 +1047,11 @@ _PyStack_UnpackDict_Free(PyObject *const *stack, Py_ssize_t nargs,
|
|||
PyMem_Free((PyObject **)stack - 1);
|
||||
Py_DECREF(kwnames);
|
||||
}
|
||||
|
||||
// Export for the stable ABI
|
||||
#undef PyVectorcall_NARGS
|
||||
Py_ssize_t
|
||||
PyVectorcall_NARGS(size_t n)
|
||||
{
|
||||
return _PyVectorcall_NARGS(n);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue