mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645)
Co-Authored-By: Pablo Galindo <Pablogsal@gmail.com>
This commit is contained in:
parent
a9d0a6a1b9
commit
50d4f12958
3 changed files with 11 additions and 1 deletions
|
@ -3126,7 +3126,7 @@ ast_for_call(struct compiling *c, const node *n, expr_ty func,
|
|||
return NULL;
|
||||
starred = Starred(e, Load, LINENO(chch),
|
||||
chch->n_col_offset,
|
||||
chch->n_end_lineno, chch->n_end_col_offset,
|
||||
e->end_lineno, e->end_col_offset,
|
||||
c->c_arena);
|
||||
if (!starred)
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue