diff options
author | Wenzel Jakob <wenzel.jakob@epfl.ch> | 2022-10-27 09:45:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-27 09:45:42 (GMT) |
commit | e60892f9db1316dbabf7a652d7648e4f968b745d (patch) | |
tree | f3e6c05f67907d2778241c17425ce88a88c407cc /Doc/data | |
parent | d578aaea6257458c199328100cbb5af64c6a043e (diff) | |
download | cpython-e60892f9db1316dbabf7a652d7648e4f968b745d.zip cpython-e60892f9db1316dbabf7a652d7648e4f968b745d.tar.gz cpython-e60892f9db1316dbabf7a652d7648e4f968b745d.tar.bz2 |
gh-98586: Add vector call APIs to the Limited API (GH-98587)
Expose the facilities for making vector calls through Python's limited API.
Diffstat (limited to 'Doc/data')
-rw-r--r-- | Doc/data/stable_abi.dat | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/data/stable_abi.dat b/Doc/data/stable_abi.dat index fde62ea..1336584 100644 --- a/Doc/data/stable_abi.dat +++ b/Doc/data/stable_abi.dat @@ -1,4 +1,5 @@ role,name,added,ifdef_note,struct_abi_kind +macro,PY_VECTORCALL_ARGUMENTS_OFFSET,3.12,, function,PyAIter_Check,3.10,, function,PyArg_Parse,3.2,, function,PyArg_ParseTuple,3.2,, @@ -536,6 +537,8 @@ function,PyObject_SetItem,3.2,, function,PyObject_Size,3.2,, function,PyObject_Str,3.2,, function,PyObject_Type,3.2,, +function,PyObject_Vectorcall,3.12,, +function,PyObject_VectorcallMethod,3.12,, var,PyProperty_Type,3.2,, var,PyRangeIter_Type,3.2,, var,PyRange_Type,3.2,, |