PySlice_New method

Pointer<PyObject> PySlice_New(
  1. Pointer<PyObject> start,
  2. Pointer<PyObject> stop,
  3. Pointer<PyObject> step
)

Implementation

ffi.Pointer<PyObject> PySlice_New(
  ffi.Pointer<PyObject> start,
  ffi.Pointer<PyObject> stop,
  ffi.Pointer<PyObject> step,
) {
  return _PySlice_New(
    start,
    stop,
    step,
  );
}