mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-40141: Include the value in the column position for keyword AST nodes (GH-19348)
This commit is contained in:
parent
254ec78341
commit
40cf35c5b0
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue