PyType_GenericNew method

Pointer<PyObject> PyType_GenericNew(
  1. Pointer<_typeobject> arg0,
  2. Pointer<PyObject> arg1,
  3. Pointer<PyObject> arg2
)

Implementation

ffi.Pointer<PyObject> PyType_GenericNew(
  ffi.Pointer<_typeobject> arg0,
  ffi.Pointer<PyObject> arg1,
  ffi.Pointer<PyObject> arg2,
) {
  return _PyType_GenericNew(
    arg0,
    arg1,
    arg2,
  );
}