PyODict_DelItem method

int PyODict_DelItem(
  1. Pointer<PyObject> od,
  2. Pointer<PyObject> key
)

Implementation

int PyODict_DelItem(
  ffi.Pointer<PyObject> od,
  ffi.Pointer<PyObject> key,
) {
  return _PyODict_DelItem(
    od,
    key,
  );
}