PyObject_RichCompareBool method

int PyObject_RichCompareBool(
  1. Pointer<PyObject> arg0,
  2. Pointer<PyObject> arg1,
  3. int arg2
)

Implementation

int PyObject_RichCompareBool(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<PyObject> arg1,
  int arg2,
) {
  return _PyObject_RichCompareBool(
    arg0,
    arg1,
    arg2,
  );
}