PyArg_ParseTupleAndKeywords method

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

Implementation

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