Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:06:46

0001 #ifndef Py_INTERNAL_RANGE_H
0002 #define Py_INTERNAL_RANGE_H
0003 #ifdef __cplusplus
0004 extern "C" {
0005 #endif
0006 
0007 #ifndef Py_BUILD_CORE
0008 #  error "this header requires Py_BUILD_CORE define"
0009 #endif
0010 
0011 typedef struct {
0012     PyObject_HEAD
0013     long start;
0014     long step;
0015     long len;
0016 } _PyRangeIterObject;
0017 
0018 #ifdef __cplusplus
0019 }
0020 #endif
0021 #endif   /* !Py_INTERNAL_RANGE_H */