PyType_GenericAlloc method

Pointer<PyObject> PyType_GenericAlloc(
  1. Pointer<_typeobject> arg0,
  2. int arg1
)

Implementation

ffi.Pointer<PyObject> PyType_GenericAlloc(
  ffi.Pointer<_typeobject> arg0,
  int arg1,
) {
  return _PyType_GenericAlloc(
    arg0,
    arg1,
  );
}