Searched refs:PyVectorcall_Call (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Include/cpython/ |
D | abstract.h | 146 PyAPI_FUNC(PyObject *) PyVectorcall_Call(PyObject *callable, PyObject *tuple, PyObject *dict);
|
/third_party/python/Objects/ |
D | call.c | 229 PyVectorcall_Call(PyObject *callable, PyObject *tuple, PyObject *kwargs) in PyVectorcall_Call() function 290 return PyVectorcall_Call(callable, args, kwargs); in _PyObject_Call()
|
D | classobject.c | 346 PyVectorcall_Call, /* tp_call */
|
D | methodobject.c | 533 return PyVectorcall_Call(func, args, kwargs); in cfunction_call()
|
D | funcobject.c | 700 PyVectorcall_Call, /* tp_call */
|
D | descrobject.c | 705 PyVectorcall_Call, /* tp_call */
|
/third_party/python/Doc/c-api/ |
D | call.rst | 52 :c:member:`~PyTypeObject.tp_call` to :c:func:`PyVectorcall_Call`. 165 .. c:function:: PyObject* PyVectorcall_Call(PyObject *callable, PyObject *tuple, PyObject *dict)
|
D | typeobj.rst | 721 This can be done by setting *tp_call* to :c:func:`PyVectorcall_Call`. 748 :c:func:`PyVectorcall_Call` is explicitly called.
|
/third_party/python/Modules/ |
D | _testcapimodule.c | 5114 return PyVectorcall_Call(func, argstuple, kwargs); in test_pyvectorcall_call() 6518 .tp_call = PyVectorcall_Call, 6558 .tp_call = PyVectorcall_Call,
|