- Notifications
You must be signed in to change notification settings - Fork 31.7k
/
Copy pathrangeobject.h
27 lines (20 loc) · 630 Bytes
/
rangeobject.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* Range object interface */
#ifndefPy_RANGEOBJECT_H
#definePy_RANGEOBJECT_H
#ifdef__cplusplus
extern"C" {
#endif
/*
A range object represents an integer range. This is an immutable object;
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.
*/
PyAPI_DATA(PyTypeObject) PyRange_Type;
PyAPI_DATA(PyTypeObject) PyRangeIter_Type;
PyAPI_DATA(PyTypeObject) PyLongRangeIter_Type;
#definePyRange_Check(op) Py_IS_TYPE((op), &PyRange_Type)
#ifdef__cplusplus
}
#endif
#endif/* !Py_RANGEOBJECT_H */