PyErr_ExceptionMatches method

int PyErr_ExceptionMatches(
  1. Pointer<PyObject> arg0
)

Implementation

int PyErr_ExceptionMatches(
  ffi.Pointer<PyObject> arg0,
) {
  return _PyErr_ExceptionMatches(
    arg0,
  );
}