Skip to content

Commit 0e0abc3

Browse files
committed
fix
1 parent 2191c56 commit 0e0abc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Parser/action_helpers.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,7 @@ _build_concatenated_bytes(Parser *p, asdl_expr_seq *strings, int lineno,
16831683
Py_DECREF(res);
16841684
return NULL;
16851685
}
1686-
return _PyAST_Constant(res, kind, lineno, col_offset, end_lineno, end_col_offset, arena);
1686+
return _PyAST_Constant(res, kind, lineno, col_offset, end_lineno, end_col_offset, p->arena);
16871687
}
16881688

16891689
static expr_ty

0 commit comments

Comments
 (0)