From: Zackery Spytz Date: Fri, 21 May 2021 20:29:12 +0000 (-0700) Subject: bpo-43556: Fix the attr names for ast.expr and ast.stmt in the docs (GH-24940) X-Git-Tag: v3.9.6~66 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=96c9961bfe1ab471a6bcd4b6e9255af25865dde2;p=thirdparty%2FPython%2Fcpython.git bpo-43556: Fix the attr names for ast.expr and ast.stmt in the docs (GH-24940) --- diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst index d13c7ef63850..9328faf53839 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.