PyMapping_GetItemString method Null safety

Pointer<PyObject> PyMapping_GetItemString (
  1. Pointer<PyObject> o,
  2. Pointer<Int8> key
)

Implementation

ffi.Pointer<PyObject> PyMapping_GetItemString(
  ffi.Pointer<PyObject> o,
  ffi.Pointer<ffi.Int8> key,
) {
  return _PyMapping_GetItemString(
    o,
    key,
  );
}