]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add a version added note for PY_VECTORCALL_ARGUMENTS_OFFSET (#110963)
authorAnthony Shaw <anthony.p.shaw@gmail.com>
Mon, 23 Oct 2023 16:00:52 +0000 (03:00 +1100)
committerGitHub <noreply@github.com>
Mon, 23 Oct 2023 16:00:52 +0000 (19:00 +0300)
Doc/c-api/call.rst

index aed4ae44c76eead574d6f4b4a7da4f13d03bf367..7198d6bc056eb43e7a38c37d9d7c90986ae34d1d 100644 (file)
@@ -108,6 +108,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.