diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ast.c | 2 |
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); |