py_newtuple method

void py_newtuple(
  1. py_OutRef arg0,
  2. int n
)

Create a tuple with n UNINITIALIZED elements. You should initialize all elements before using it.

Implementation

void py_newtuple(
  py_OutRef arg0,
  int n,
) {
  return _py_newtuple(
    arg0,
    n,
  );
}