summaryrefslogtreecommitdiff
path: root/Python/ast.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ast.c')
-rw-r--r--Python/ast.c2
1 files changed, 1 insertions, 1 deletions
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);