Home
last modified time | relevance | path

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

/external/python/cpython2/Tools/compiler/
Dastgen.py108 argtuple = '(' in self.args
109 args = self.args if not argtuple else ''.join(self.argnames)
114 if argtuple:
/external/python/cpython3/Objects/
Dcall.c669 PyObject *argtuple; in _PyMethodDef_RawFastCallKeywords() local
671 argtuple = _PyStack_AsTuple(args, nargs); in _PyMethodDef_RawFastCallKeywords()
672 if (argtuple == NULL) { in _PyMethodDef_RawFastCallKeywords()
682 Py_DECREF(argtuple); in _PyMethodDef_RawFastCallKeywords()
690 result = (*(PyCFunctionWithKeywords)meth) (self, argtuple, kwdict); in _PyMethodDef_RawFastCallKeywords()
694 result = (*meth) (self, argtuple); in _PyMethodDef_RawFastCallKeywords()
696 Py_DECREF(argtuple); in _PyMethodDef_RawFastCallKeywords()
/external/python/cpython2/Modules/
Ditertoolsmodule.c1544 PyObject *argtuple; in imap_next() local
1549 argtuple = PyTuple_New(numargs); in imap_next()
1550 if (argtuple == NULL) in imap_next()
1556 Py_DECREF(argtuple); in imap_next()
1559 PyTuple_SET_ITEM(argtuple, i, val); in imap_next()
1562 return argtuple; in imap_next()
1563 result = PyObject_Call(lz->func, argtuple, NULL); in imap_next()
1564 Py_DECREF(argtuple); in imap_next()
/external/python/cpython3/Modules/_ctypes/
Dcallproc.c1069 PyObject *argtuple, in _ctypes_callproc() argument
1089 n = argcount = PyTuple_GET_SIZE(argtuple); in _ctypes_callproc()
1118 arg = PyTuple_GET_ITEM(argtuple, i); /* borrowed ref */ in _ctypes_callproc()
/external/python/cpython2/Modules/_ctypes/
Dcallproc.c1087 PyObject *argtuple, in _ctypes_callproc() argument
1107 n = argcount = PyTuple_GET_SIZE(argtuple); in _ctypes_callproc()
1136 arg = PyTuple_GET_ITEM(argtuple, i); /* borrowed ref */ in _ctypes_callproc()