PyErr_NormalizeException method

void PyErr_NormalizeException(
  1. Pointer<Pointer<PyObject>> arg0,
  2. Pointer<Pointer<PyObject>> arg1,
  3. Pointer<Pointer<PyObject>> arg2
)

Implementation

void PyErr_NormalizeException(
  ffi.Pointer<ffi.Pointer<PyObject>> arg0,
  ffi.Pointer<ffi.Pointer<PyObject>> arg1,
  ffi.Pointer<ffi.Pointer<PyObject>> arg2,
) {
  return _PyErr_NormalizeException(
    arg0,
    arg1,
    arg2,
  );
}