py_tuple_getitem method

py_ObjectRef py_tuple_getitem(
  1. py_Ref self,
  2. int i
)

Implementation

py_ObjectRef py_tuple_getitem(
  py_Ref self,
  int i,
) {
  return _py_tuple_getitem(
    self,
    i,
  );
}