PySequence_List method

Pointer<PyObject> PySequence_List(
  1. Pointer<PyObject> o
)

Implementation

ffi.Pointer<PyObject> PySequence_List(
  ffi.Pointer<PyObject> o,
) {
  return _PySequence_List(
    o,
  );
}