PySequence_Fast method

Pointer<PyObject> PySequence_Fast(
  1. Pointer<PyObject> o,
  2. Pointer<Char> m
)

Implementation

ffi.Pointer<PyObject> PySequence_Fast(
  ffi.Pointer<PyObject> o,
  ffi.Pointer<ffi.Char> m,
) {
  return _PySequence_Fast(
    o,
    m,
  );
}