PyObject_InitVar method

Pointer<PyVarObject> PyObject_InitVar(
  1. Pointer<PyVarObject> arg0,
  2. Pointer<PyTypeObject> arg1,
  3. int arg2
)

Implementation

ffi.Pointer<PyVarObject> PyObject_InitVar(
  ffi.Pointer<PyVarObject> arg0,
  ffi.Pointer<PyTypeObject> arg1,
  int arg2,
) {
  return _PyObject_InitVar(
    arg0,
    arg1,
    arg2,
  );
}