diff options
-rw-r--r-- | Doc/c-api/call.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/c-api/call.rst b/Doc/c-api/call.rst index aed4ae4..7198d6b 100644 --- a/Doc/c-api/call.rst +++ b/Doc/c-api/call.rst @@ -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. |