123456789101112131415161718192021222324252627 |
- #ifndef Py_RANGEOBJECT_H
- #define Py_RANGEOBJECT_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- PyAPI_DATA(PyTypeObject) PyRange_Type;
- PyAPI_DATA(PyTypeObject) PyRangeIter_Type;
- PyAPI_DATA(PyTypeObject) PyLongRangeIter_Type;
- #define PyRange_Check(op) (Py_TYPE(op) == &PyRange_Type)
- #ifdef __cplusplus
- }
- #endif
- #endif
|