py_newlocals method

void py_newlocals(
  1. py_OutRef arg0
)

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,
  );
}