py_newslice method

void py_newslice(
  1. py_OutRef arg0
)

Create an UNINITIALIZED slice object. You should use py_setslot() to set start, stop, and step.

Implementation

void py_newslice(
  py_OutRef arg0,
) {
  return _py_newslice(
    arg0,
  );
}