Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dcall.c104 PyObject *argstuple, *result; in _PyObject_FastCallDict() local
115 argstuple = _PyStack_AsTuple(args, nargs); in _PyObject_FastCallDict()
116 if (argstuple == NULL) { in _PyObject_FastCallDict()
121 Py_DECREF(argstuple); in _PyObject_FastCallDict()
125 result = (*call)(callable, argstuple, kwargs); in _PyObject_FastCallDict()
128 Py_DECREF(argstuple); in _PyObject_FastCallDict()
163 PyObject *argstuple; in _PyObject_FastCallKeywords() local
177 argstuple = _PyStack_AsTuple(stack, nargs); in _PyObject_FastCallKeywords()
178 if (argstuple == NULL) { in _PyObject_FastCallKeywords()
185 Py_DECREF(argstuple); in _PyObject_FastCallKeywords()
[all …]