PyMapping_Check method

int PyMapping_Check(
  1. Pointer<PyObject> o
)

Implementation

int PyMapping_Check(
  ffi.Pointer<PyObject> o,
) {
  return _PyMapping_Check(
    o,
  );
}