py_newtuple method
Create a tuple with n UNINITIALIZED elements.
You should initialize all elements before using it.
Implementation
py_ObjectRef py_newtuple(
py_OutRef arg0,
int n,
) {
return _py_newtuple(
arg0,
n,
);
}
Create a tuple with n UNINITIALIZED elements.
You should initialize all elements before using it.
py_ObjectRef py_newtuple(
py_OutRef arg0,
int n,
) {
return _py_newtuple(
arg0,
n,
);
}