PySlice_FromIndices method

Pointer<PyObject> PySlice_FromIndices(
  1. int start,
  2. int stop
)

Implementation

ffi.Pointer<PyObject> PySlice_FromIndices(
  int start,
  int stop,
) {
  return _PySlice_FromIndices(
    start,
    stop,
  );
}