Warning, file /include/python3.12/internal/pycore_range.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
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