Home
last modified time | relevance | path

Searched refs:_PyObject_Call (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Objects/
Dcall.c276 _PyObject_Call(PyThreadState *tstate, PyObject *callable, in _PyObject_Call() function
317 return _PyObject_Call(tstate, callable, args, kwargs); in PyObject_Call()
325 return _PyObject_Call(tstate, callable, args, kwargs); in PyCFunction_Call()
381 return _PyObject_Call(tstate, callable, args, kwargs); in PyEval_CallObjectWithKeywords()
399 return _PyObject_Call(tstate, callable, args, NULL); in PyObject_CallObject()
Dtypeobject.c7489 res = _PyObject_Call(tstate, meth, args, kwds); in slot_tp_call()
7729 res = _PyObject_Call(tstate, meth, args, kwds); in slot_tp_init()
/third_party/python/Include/internal/
Dpycore_call.h25 PyAPI_FUNC(PyObject *) _PyObject_Call(
/third_party/python/Modules/
Dsignalmodule.c1835 result = _PyObject_Call(tstate, func, arglist, NULL);