PyList_AsTuple method

Pointer<PyObject> PyList_AsTuple(
  1. Pointer<PyObject> arg0
)

Implementation

ffi.Pointer<PyObject> PyList_AsTuple(
  ffi.Pointer<PyObject> arg0,
) {
  return _PyList_AsTuple(
    arg0,
  );
}