PyArg_ParseTupleAndKeywords method Null safety

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

Implementation

int PyArg_ParseTupleAndKeywords(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<PyObject> arg1,
  ffi.Pointer<ffi.Int8> arg2,
  ffi.Pointer<ffi.Pointer<ffi.Int8>> arg3,
) {
  return _PyArg_ParseTupleAndKeywords(
    arg0,
    arg1,
    arg2,
    arg3,
  );
}