From 8db54060d784851910f345c821a659f6ec351e28 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 18 Jul 2018 10:07:20 -0700 Subject: A random simplification I noticed --- Python/ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ast.c b/Python/ast.c index 3072cb68d1..17b9720568 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -3058,7 +3058,7 @@ ast_for_expr_stmt(struct compiling *c, const node *n) return NULL; /* set context to assign */ - if (!set_context(c, e, Store, CHILD(n, i))) + if (!set_context(c, e, Store, ch)) return NULL; asdl_seq_SET(targets, i / 2, e); -- cgit v1.2.1