Home
last modified time | relevance | path

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

/third_party/python/Objects/
H A Dcall.c188 PyObject *argstuple = _PyTuple_FromArray(args, nargs); in _PyObject_MakeTpCall() local
189 if (argstuple == NULL) { in _PyObject_MakeTpCall()
202 Py_DECREF(argstuple); in _PyObject_MakeTpCall()
215 (PyCFunctionWithKeywords)call, callable, argstuple, kwdict); in _PyObject_MakeTpCall()
219 Py_DECREF(argstuple); in _PyObject_MakeTpCall()
H A Ddescrobject.c321 PyObject *argstuple = _PyTuple_FromArray(args+1, nargs-1); in method_vectorcall_VARARGS() local
322 if (argstuple == NULL) { in method_vectorcall_VARARGS()
327 Py_DECREF(argstuple); in method_vectorcall_VARARGS()
331 meth, args[0], argstuple); in method_vectorcall_VARARGS()
332 Py_DECREF(argstuple); in method_vectorcall_VARARGS()
346 PyObject *argstuple = _PyTuple_FromArray(args+1, nargs-1); in method_vectorcall_VARARGS_KEYWORDS() local
347 if (argstuple == NULL) { in method_vectorcall_VARARGS_KEYWORDS()
365 meth, args[0], argstuple, kwdict); in method_vectorcall_VARARGS_KEYWORDS()
368 Py_DECREF(argstuple); in method_vectorcall_VARARGS_KEYWORDS()
/third_party/python/Modules/
H A D_testcapimodule.c5331 PyObject *argstuple; in test_pyvectorcall_call() local
5334 if (!PyArg_ParseTuple(args, "OO|O", &func, &argstuple, &kwargs)) { in test_pyvectorcall_call()
5338 if (!PyTuple_Check(argstuple)) { in test_pyvectorcall_call()
5347 return PyVectorcall_Call(func, argstuple, kwargs); in test_pyvectorcall_call()

Completed in 22 milliseconds