Lines Matching defs:call
106 /* --- Core PyObject call functions ------------------------------- */
180 ternaryfunc call = Py_TYPE(callable)->tp_call;
181 if (call == NULL) {
215 (PyCFunctionWithKeywords)call, callable, argstuple, kwdict);
248 /* Convert arguments & call */
316 ternaryfunc call;
331 call = Py_TYPE(callable)->tp_call;
332 if (call == NULL) {
343 result = (*call)(callable, args, kwargs);
380 /* --- PyFunction call functions ---------------------------------- */
400 /* --- More complex call functions -------------------------------- */
402 /* External interface to call any callable object.
851 * args[-1] in the onward call is args[0] here. */
957 When done, you must call _PyStack_UnpackDict_Free(stack, nargs, kwnames) */
968 /* Check for overflow in the PyMem_Malloc() call below. The subtraction