PyMapping_SetItemString method Null safety

int PyMapping_SetItemString (
  1. Pointer<PyObject> o,
  2. Pointer<Int8> key,
  3. Pointer<PyObject> value
)

Implementation

int PyMapping_SetItemString(
  ffi.Pointer<PyObject> o,
  ffi.Pointer<ffi.Int8> key,
  ffi.Pointer<PyObject> value,
) {
  return _PyMapping_SetItemString(
    o,
    key,
    value,
  );
}