From 05d68a8bd84cb141be9f9335f5b3540f15a989c4 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 18 Jan 2018 11:15:25 +0100 Subject: bpo-9566: Fix size_t=>int downcast warnings (#5230) * Use wider types (int => Py_ssize_t) to avoid integer overflows. * Fix gc.get_freeze_count(): use Py_ssize_t type rather than int, since gc_list_size() returns a Py_ssize_t. --- Python/ast_opt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/ast_opt.c') diff --git a/Python/ast_opt.c b/Python/ast_opt.c index f98a28aa05..65cf3c1264 100644 --- a/Python/ast_opt.c +++ b/Python/ast_opt.c @@ -397,7 +397,7 @@ fold_compare(expr_ty node, PyArena *arena, int optimize) { asdl_int_seq *ops; asdl_seq *args; - int i; + Py_ssize_t i; ops = node->v.Compare.ops; args = node->v.Compare.comparators; -- cgit v1.2.1