PyObject_CallMethod method Null safety

Pointer<PyObject> PyObject_CallMethod (
  1. Pointer<PyObject> obj,
  2. Pointer<Int8> name,
  3. Pointer<Int8> format
)

Implementation

ffi.Pointer<PyObject> PyObject_CallMethod(
  ffi.Pointer<PyObject> obj,
  ffi.Pointer<ffi.Int8> name,
  ffi.Pointer<ffi.Int8> format,
) {
  return _PyObject_CallMethod(
    obj,
    name,
    format,
  );
}