Lines Matching defs:tuple
178 /* Slow path: build a temporary tuple for positional arguments and a
237 PyObject *callable, PyObject *tuple, PyObject *kwargs)
241 Py_ssize_t nargs = PyTuple_GET_SIZE(tuple);
245 return func(callable, _PyTuple_ITEMS(tuple), nargs, NULL);
252 _PyTuple_ITEMS(tuple), nargs,
266 PyVectorcall_Call(PyObject *callable, PyObject *tuple, PyObject *kwargs)
290 return _PyVectorcall_Call(tstate, func, callable, tuple, kwargs);
403 The args must be a tuple or NULL. The kwargs must be a dict or NULL. */
418 "argument list must be a tuple");
447 "argument list must be a tuple");
526 - PyObject_CallFunction(func, "O", tuple) calls func(*tuple)
946 /* Convert (args, nargs, kwargs: dict) into a (stack, nargs, kwnames: tuple).
948 Allocate a new argument vector and keyword names tuple. Return the argument
950 tuple in *p_kwnames.