Searched refs:argstuple (Results 1 – 1 of 1) sorted by relevance
104 PyObject *argstuple, *result; in _PyObject_FastCallDict() local115 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() local177 argstuple = _PyStack_AsTuple(stack, nargs); in _PyObject_FastCallKeywords()178 if (argstuple == NULL) { in _PyObject_FastCallKeywords()185 Py_DECREF(argstuple); in _PyObject_FastCallKeywords()[all …]