PyMapping_GetItemString method

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

Implementation

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