diff options
author | Steve Dower <steve.dower@python.org> | 2024-06-24 17:11:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 17:11:47 +0100 |
commit | e7315543377322e4c6e0d8d2c4a4bb4626e43f4c (patch) | |
tree | 956e3eb3c667a53aa60954e36916d165f2333bab /Python/future.c | |
parent | 2e157851e36d83b0cb079b161d633b16ab899d16 (diff) | |
download | cpython-e7315543377322e4c6e0d8d2c4a4bb4626e43f4c.tar.gz cpython-e7315543377322e4c6e0d8d2c4a4bb4626e43f4c.zip |
Fixes loop variables to be the same types as their limit (GH-120958)
Diffstat (limited to 'Python/future.c')
-rw-r--r-- | Python/future.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/future.c b/Python/future.c index 8d94d515605..8aeb541cb05 100644 --- a/Python/future.c +++ b/Python/future.c @@ -8,7 +8,7 @@ static int future_check_features(_PyFutureFeatures *ff, stmt_ty s, PyObject *filename) { - int i; + Py_ssize_t i; assert(s->kind == ImportFrom_kind); |