rangeobject.h 613 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
extern DL_IMPORT(PyTypeObject) PyRange_Type;
19

20
#define PyRange_Check(op) ((op)->ob_type == &PyRange_Type)
21

22
extern DL_IMPORT(PyObject *) PyRange_New(long, long, long, int);
23 24 25 26 27

#ifdef __cplusplus
}
#endif
#endif /* !Py_RANGEOBJECT_H */