(obj *C.PyObject)
| 16 | var TupleType = (*Type)(unsafe.Pointer(&C.PyTuple_Type)) |
| 17 | |
| 18 | func newTuple(obj *C.PyObject) *Tuple { |
| 19 | return (*Tuple)(unsafe.Pointer(obj)) |
| 20 | } |
| 21 | |
| 22 | // NewTuple returns a new *Tuple of the specified size. However the entries are |
| 23 | // all set to NULL, so the tuple should not be shared, especially with Python |