PySliceObject

A slice object containing start, stop, and step data members (the names are from range). After much talk with Guido, it was decided to let these be any arbitrary python type. Py_None stands for omitted values.

subclass of PyObject

Members

Mixins

__anonymous
mixin PyObject_HEAD
Undocumented in source.

Variables

start
PyObject* start;
step
PyObject* step;
stop
PyObject* stop;

not NULL

Mixed In Members

From mixin PyObject_HEAD

__anonymous
mixin _PyObject_HEAD_EXTRA
Undocumented in source.
ob_refcnt
Py_ssize_t ob_refcnt;

_

ob_type
PyTypeObject* ob_type;

_

Meta