py_newlocals method
Python equivalent to locals()
.
@return a temporary object, which expires on the associated function return.
Implementation
void py_newlocals(
py_OutRef arg0,
) {
return _py_newlocals(
arg0,
);
}
Python equivalent to locals()
.
@return a temporary object, which expires on the associated function return.
void py_newlocals(
py_OutRef arg0,
) {
return _py_newlocals(
arg0,
);
}