Home
last modified time | relevance | path

Searched refs:argtuple (Results 1 – 3 of 3) 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/cpython2/Modules/
Ditertoolsmodule.c1558 PyObject *argtuple; in imap_next() local
1563 argtuple = PyTuple_New(numargs); in imap_next()
1564 if (argtuple == NULL) in imap_next()
1570 Py_DECREF(argtuple); in imap_next()
1573 PyTuple_SET_ITEM(argtuple, i, val); in imap_next()
1576 return argtuple; in imap_next()
1577 result = PyObject_Call(lz->func, argtuple, NULL); in imap_next()
1578 Py_DECREF(argtuple); in imap_next()
/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()