PyArg_VaParseTupleAndKeywords method Null safety

int PyArg_VaParseTupleAndKeywords (
  1. Pointer<PyObject> arg0,
  2. Pointer<PyObject> arg1,
  3. Pointer<Int8> arg2,
  4. Pointer<Pointer<Int8>> arg3,
  5. Pointer<__va_list_tag> arg4
)

Implementation

int PyArg_VaParseTupleAndKeywords(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<PyObject> arg1,
  ffi.Pointer<ffi.Int8> arg2,
  ffi.Pointer<ffi.Pointer<ffi.Int8>> arg3,
  ffi.Pointer<__va_list_tag> arg4,
) {
  return _PyArg_VaParseTupleAndKeywords(
    arg0,
    arg1,
    arg2,
    arg3,
    arg4,
  );
}