pycore_range.h 346 B

123456789101112131415161718192021
  1. #ifndef Py_INTERNAL_RANGE_H
  2. #define Py_INTERNAL_RANGE_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #ifndef Py_BUILD_CORE
  7. # error "this header requires Py_BUILD_CORE define"
  8. #endif
  9. typedef struct {
  10. PyObject_HEAD
  11. long start;
  12. long step;
  13. long len;
  14. } _PyRangeIterObject;
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif /* !Py_INTERNAL_RANGE_H */