rangeobject.h 648 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 12
/* This is about the type 'xrange', not the built-in function range(), which
   returns regular lists. */

13
/*
14
A range object represents an integer range.  This is an immutable object;
15 16 17 18 19 20
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.
*/

21
PyAPI_DATA(PyTypeObject) PyRange_Type;
22

23
#define PyRange_Check(op) ((op)->ob_type == &PyRange_Type)
24

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