summaryrefslogtreecommitdiffstats
path: root/Doc/library/ast.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-09-01 13:32:13 (GMT)
committerGitHub <noreply@github.com>2023-09-01 13:32:13 (GMT)
commit1e15c1501c51f03123ec0da3fa430f2286bac40c (patch)
treea3adf7fc8ffe45ea84765ff7d9e2c319e2a279fa /Doc/library/ast.rst
parent8c3793a539ce950e552da390b7b24485dd655237 (diff)
downloadcpython-1e15c1501c51f03123ec0da3fa430f2286bac40c.zip
cpython-1e15c1501c51f03123ec0da3fa430f2286bac40c.tar.gz
cpython-1e15c1501c51f03123ec0da3fa430f2286bac40c.tar.bz2
[3.12] `ast` docs: Fix incorrect link on `keyword` (GH-108728) (#108737)
`ast` docs: Fix incorrect link on `keyword` (GH-108728) In two places, Sphinx was erroneously adding links to the `keyword` module instead of the `ast.keyword` class (cherry picked from commit c1e2f3b2f70b8a72ea7e1bf792addf62a94ae65d) Co-authored-by: Alex Povel <git@alexpovel.de>
Diffstat (limited to 'Doc/library/ast.rst')
-rw-r--r--Doc/library/ast.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ast.rst b/Doc/library/ast.rst
index 530cf30..9c76443 100644
--- a/Doc/library/ast.rst
+++ b/Doc/library/ast.rst
@@ -585,7 +585,7 @@ Expressions
:class:`Name` or :class:`Attribute` object. Of the arguments:
* ``args`` holds a list of the arguments passed by position.
- * ``keywords`` holds a list of :class:`keyword` objects representing
+ * ``keywords`` holds a list of :class:`.keyword` objects representing
arguments passed by keyword.
When creating a ``Call`` node, ``args`` and ``keywords`` are required, but
@@ -2024,7 +2024,7 @@ Function and class definitions
* ``name`` is a raw string for the class name
* ``bases`` is a list of nodes for explicitly specified base classes.
- * ``keywords`` is a list of :class:`keyword` nodes, principally for 'metaclass'.
+ * ``keywords`` is a list of :class:`.keyword` nodes, principally for 'metaclass'.
Other keywords will be passed to the metaclass, as per `PEP-3115
<https://peps.python.org/pep-3115/>`_.
* ``body`` is a list of nodes representing the code within the class