py_newsliceint method

void py_newsliceint(
  1. py_OutRef out,
  2. int start,
  3. int stop,
  4. int step,
)

Create a slice object from 3 integers.

Implementation

void py_newsliceint(
  py_OutRef out,
  int start,
  int stop,
  int step,
) {
  return _py_newsliceint(
    out,
    start,
    stop,
    step,
  );
}