PyArg_VaParseTupleAndKeywords method

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

Implementation

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