aboutsummaryrefslogtreecommitdiffstatshomepage
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 6ba62fb479f..0f23f6762d8 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -3096,7 +3096,7 @@ ast_for_call(struct compiling *c, const node *n, expr_ty func,
if (!e)
return NULL;
kw = keyword(key, e, chch->n_lineno, chch->n_col_offset,
- chch->n_end_lineno, chch->n_end_col_offset, c->c_arena);
+ e->end_lineno, e->end_col_offset, c->c_arena);
if (!kw)
return NULL;