PyObject_Init method

Pointer<PyObject> PyObject_Init(
  1. Pointer<PyObject> arg0,
  2. Pointer<PyTypeObject> arg1
)

Implementation

ffi.Pointer<PyObject> PyObject_Init(
  ffi.Pointer<PyObject> arg0,
  ffi.Pointer<PyTypeObject> arg1,
) {
  return _PyObject_Init(
    arg0,
    arg1,
  );
}