PyTupleObject
extern (C) 
struct PyTupleObject  {
}
- ob_item
PyObject** ob_item()
 
- __anonymous
mixin PyObject_VAR_HEAD 
 Undocumented in source.
- _ob_item
PyObject*[1] _ob_item;
 Undocumented in source.
From mixin PyObject_VAR_HEAD 
- __anonymous
mixin PyObject_HEAD 
 Undocumented in source.
- ob_size
Py_ssize_t ob_size;
 
 
		
	 
	
ob_item contains space for 'ob_size' elements. Items must normally not be NULL, except during construction when the tuple is not yet visible outside the function that builds it.
subclass of PyVarObject