diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-11-30 21:04:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-30 21:04:30 (GMT) |
commit | 787764219f874ce2035699ed772af1e9f3bbf813 (patch) | |
tree | cad58073df5fba2f204c4633054ba6a91daf542e /Include | |
parent | 9628136fac997847b4662e6a17faf06d2a0507eb (diff) | |
download | cpython-787764219f874ce2035699ed772af1e9f3bbf813.zip cpython-787764219f874ce2035699ed772af1e9f3bbf813.tar.gz cpython-787764219f874ce2035699ed772af1e9f3bbf813.tar.bz2 |
gh-89189: More compact range iterator (GH-27986)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/internal/pycore_range.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/internal/pycore_range.h b/Include/internal/pycore_range.h index 809e89a..bf045ec 100644 --- a/Include/internal/pycore_range.h +++ b/Include/internal/pycore_range.h @@ -10,7 +10,6 @@ extern "C" { typedef struct { PyObject_HEAD - long index; long start; long step; long len; |