PyStructSequence_New method

Pointer<PyObject> PyStructSequence_New(
  1. Pointer<PyTypeObject> type
)

Implementation

ffi.Pointer<PyObject> PyStructSequence_New(
  ffi.Pointer<PyTypeObject> type,
) {
  return _PyStructSequence_New(
    type,
  );
}