]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] Add a version added note for PY_VECTORCALL_ARGUMENTS_OFFSET (GH-110963) (...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 23 Oct 2023 16:09:56 +0000 (18:09 +0200)
committerGitHub <noreply@github.com>
Mon, 23 Oct 2023 16:09:56 +0000 (16:09 +0000)
Co-authored-by: Anthony Shaw <anthony.p.shaw@gmail.com>
Doc/c-api/call.rst

index 838af604dca020baf4613a20854a917099087e1e..df17c2207e94fdc1197ad29b6f4ea23ac7c4efab 100644 (file)
@@ -99,6 +99,8 @@ This is a pointer to a function with the following signature:
    Doing so will allow callables such as bound methods to make their onward
    calls (which include a prepended *self* argument) very efficiently.
 
+   .. versionadded:: 3.8
+
 To call an object that implements vectorcall, use a :ref:`call API <capi-call>`
 function as with any other callable.
 :c:func:`PyObject_Vectorcall` will usually be most efficient.