py_Frame_newlocals method

void py_Frame_newlocals(
  1. Pointer<py_Frame> frame,
  2. py_OutRef out
)

Python equivalent to locals() with respect to the given frame.

Implementation

void py_Frame_newlocals(
  ffi.Pointer<py_Frame> frame,
  py_OutRef out,
) {
  return _py_Frame_newlocals(
    frame,
    out,
  );
}