OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PyTupleObject
(Results
1 - 2
of
2
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
tupleobject.h
32
}
PyTupleObject
;
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)
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
tupleobject.h
32
}
PyTupleObject
;
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)
Completed in 223 milliseconds