PyModule_AddObject method Null safety

int PyModule_AddObject (
  1. Pointer<PyObject> arg0,
  2. Pointer<Int8> arg1,
  3. Pointer<PyObject> arg2
)

Implementation

int PyModule_AddObject(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<ffi.Int8> arg1,
  ffi.Pointer<PyObject> arg2,
) {
  return _PyModule_AddObject(
    arg0,
    arg1,
    arg2,
  );
}