Home
last modified time | relevance | path

Searched refs:PyVectorcall_Function (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Include/cpython/
Dabstract.h62 PyVectorcall_Function(PyObject *callable) in PyVectorcall_Function() function
109 func = PyVectorcall_Function(callable); in _PyObject_VectorcallTstate()
131 #define _PyVectorcall_Function PyVectorcall_Function
/third_party/python/Objects/
Dcall.c134 vectorcallfunc func = PyVectorcall_Function(callable); in _PyObject_FastCallDictTstate()
289 if (PyVectorcall_Function(callable) != NULL) { in _PyObject_Call()
/third_party/python/Doc/c-api/
Dcall.rst151 .. c:function:: vectorcallfunc PyVectorcall_Function(PyObject *op)
159 which can be done by checking ``PyVectorcall_Function(op) != NULL``.
/third_party/python/Misc/NEWS.d/
D3.9.0a4.rst947 ``PyVectorcall_Function``, ``PyObject_CallOneArg``,
D3.10.0a4.rst994 ``PyVectorcall_Function()``. Patch by Andreas Schneider, Antoine Pitrou and
/third_party/python/Modules/
D_functoolsmodule.c271 if (PyVectorcall_Function(pto->fn) == NULL) { in partial_setvectorcall()