Python 3.8 added the end_lineno and end_col_offset fields to AST nodes that have lineno and col_offset.
end_lineno
end_col_offset
lineno
col_offset
Specs in the official documentation.
We should probably worry about these anywhere we handle source location info.
Python 3.8 added the
end_linenoandend_col_offsetfields to AST nodes that havelinenoandcol_offset.Specs in the official documentation.
We should probably worry about these anywhere we handle source location info.