Home
last modified time | relevance | path

Searched refs:argstuple (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Objects/
Ddescrobject.c302 PyObject *argstuple = _PyTuple_FromArray(args+1, nargs-1); in method_vectorcall_VARARGS() local
303 if (argstuple == NULL) { in method_vectorcall_VARARGS()
308 Py_DECREF(argstuple); in method_vectorcall_VARARGS()
311 PyObject *result = meth(args[0], argstuple); in method_vectorcall_VARARGS()
312 Py_DECREF(argstuple); in method_vectorcall_VARARGS()
326 PyObject *argstuple = _PyTuple_FromArray(args+1, nargs-1); in method_vectorcall_VARARGS_KEYWORDS() local
327 if (argstuple == NULL) { in method_vectorcall_VARARGS_KEYWORDS()
344 result = meth(args[0], argstuple, kwdict); in method_vectorcall_VARARGS_KEYWORDS()
347 Py_DECREF(argstuple); in method_vectorcall_VARARGS_KEYWORDS()
Dcall.c189 PyObject *argstuple = _PyTuple_FromArray(args, nargs); in _PyObject_MakeTpCall() local
190 if (argstuple == NULL) { in _PyObject_MakeTpCall()
203 Py_DECREF(argstuple); in _PyObject_MakeTpCall()
215 result = call(callable, argstuple, kwdict); in _PyObject_MakeTpCall()
219 Py_DECREF(argstuple); in _PyObject_MakeTpCall()
/third_party/python/Modules/
D_testcapimodule.c5098 PyObject *argstuple; in test_pyvectorcall_call() local
5101 if (!PyArg_ParseTuple(args, "OO|O", &func, &argstuple, &kwargs)) { in test_pyvectorcall_call()
5105 if (!PyTuple_Check(argstuple)) { in test_pyvectorcall_call()
5114 return PyVectorcall_Call(func, argstuple, kwargs); in test_pyvectorcall_call()