PyDict_DelItemString method Null safety

int PyDict_DelItemString (
  1. Pointer<PyObject> dp,
  2. Pointer<Int8> key
)

Implementation

int PyDict_DelItemString(
  ffi.Pointer<PyObject> dp,
  ffi.Pointer<ffi.Int8> key,
) {
  return _PyDict_DelItemString(
    dp,
    key,
  );
}