From 96c9961bfe1ab471a6bcd4b6e9255af25865dde2 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Fri, 21 May 2021 13:29:12 -0700 Subject: bpo-43556: Fix the attr names for ast.expr and ast.stmt in the docs (GH-24940) --- Doc/library/ast.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst index d13c7ef..9328faf 100644 --- a/Doc/library/ast.rst +++ b/Doc/library/ast.rst @@ -80,10 +80,11 @@ Node classes end_col_offset Instances of :class:`ast.expr` and :class:`ast.stmt` subclasses have - :attr:`lineno`, :attr:`col_offset`, :attr:`lineno`, and :attr:`col_offset` - attributes. The :attr:`lineno` and :attr:`end_lineno` are the first and - last line numbers of source text span (1-indexed so the first line is line 1) - and the :attr:`col_offset` and :attr:`end_col_offset` are the corresponding + :attr:`lineno`, :attr:`col_offset`, :attr:`end_lineno`, and + :attr:`end_col_offset` attributes. The :attr:`lineno` and + :attr:`end_lineno` are the first and last line numbers of the source + text span (1-indexed so the first line is line 1), and the + :attr:`col_offset` and :attr:`end_col_offset` are the corresponding UTF-8 byte offsets of the first and last tokens that generated the node. The UTF-8 offset is recorded because the parser uses UTF-8 internally. -- cgit v0.12