/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Include/internal/pycore_range.h
21 строка
346 B
Serhiy Storchaka
gh-89189: More compact range iterator (GH-27986)
01 дек 2022, 00:04
Не верифицирован
01 дек 2022, 00:04
7877642
Код
Авторство
О чём код?
#ifndef Py_INTERNAL_RANGE_H #define Py_INTERNAL_RANGE_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif typedef struct { PyObject_HEAD long start; long step; long len; } _PyRangeIterObject; #ifdef __cplusplus } #endif #endif /* !Py_INTERNAL_RANGE_H */