Searched defs:PyTupleObject (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Include/
H A Dtupleobject.h32 } PyTupleObject; typedef in typeref:struct:__anon19282
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v)
/external/python/cpython3/Include/
H A Dtupleobject.h33 } PyTupleObject; typedef in typeref:struct:__anon19859
58 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])
62 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v)

Completed in 89 milliseconds