rangeobject.h 629 Bytes
Newer Older
1 2 3

/* Range object interface */

4 5 6 7 8 9
#ifndef Py_RANGEOBJECT_H
#define Py_RANGEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

10
/*
11
A range object represents an integer range.  This is an immutable object;
12 13 14 15 16 17
a range cannot change its value after creation.

Range objects behave like the corresponding tuple objects except that
they are represented by a start, stop, and step datamembers.
*/

18
PyAPI_DATA(PyTypeObject) PyRange_Type;
19 20
PyAPI_DATA(PyTypeObject) PyRangeIter_Type;
PyAPI_DATA(PyTypeObject) PyLongRangeIter_Type;
21

22
#define PyRange_Check(op) (Py_TYPE(op) == &PyRange_Type)
23

24 25 26 27
#ifdef __cplusplus
}
#endif
#endif /* !Py_RANGEOBJECT_H */