Skip to content

Commit c1e2f3b

Browse files
authored
ast docs: Fix incorrect link on keyword (#108728)
In two places, Sphinx was erroneously adding links to the `keyword` module instead of the `ast.keyword` class
1 parent ad73674 commit c1e2f3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/ast.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ Expressions
585585
:class:`Name` or :class:`Attribute` object. Of the arguments:
586586

587587
* ``args`` holds a list of the arguments passed by position.
588-
* ``keywords`` holds a list of :class:`keyword` objects representing
588+
* ``keywords`` holds a list of :class:`.keyword` objects representing
589589
arguments passed by keyword.
590590

591591
When creating a ``Call`` node, ``args`` and ``keywords`` are required, but
@@ -2024,7 +2024,7 @@ Function and class definitions
20242024

20252025
* ``name`` is a raw string for the class name
20262026
* ``bases`` is a list of nodes for explicitly specified base classes.
2027-
* ``keywords`` is a list of :class:`keyword` nodes, principally for 'metaclass'.
2027+
* ``keywords`` is a list of :class:`.keyword` nodes, principally for 'metaclass'.
20282028
Other keywords will be passed to the metaclass, as per `PEP-3115
20292029
<https://peps.python.org/pep-3115/>`_.
20302030
* ``body`` is a list of nodes representing the code within the class

0 commit comments

Comments
 (0)