mirror of
https://github.com/python/cpython.git
synced 2025-08-21 01:15:03 +00:00
[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 c1e2f3b2f7
)
Co-authored-by: Alex Povel <git@alexpovel.de>
This commit is contained in:
parent
8c3793a539
commit
1e15c1501c
1 changed files with 2 additions and 2 deletions
|
@ -585,7 +585,7 @@ Expressions
|
||||||
:class:`Name` or :class:`Attribute` object. Of the arguments:
|
:class:`Name` or :class:`Attribute` object. Of the arguments:
|
||||||
|
|
||||||
* ``args`` holds a list of the arguments passed by position.
|
* ``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.
|
arguments passed by keyword.
|
||||||
|
|
||||||
When creating a ``Call`` node, ``args`` and ``keywords`` are required, but
|
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
|
* ``name`` is a raw string for the class name
|
||||||
* ``bases`` is a list of nodes for explicitly specified base classes.
|
* ``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
|
Other keywords will be passed to the metaclass, as per `PEP-3115
|
||||||
<https://peps.python.org/pep-3115/>`_.
|
<https://peps.python.org/pep-3115/>`_.
|
||||||
* ``body`` is a list of nodes representing the code within the class
|
* ``body`` is a list of nodes representing the code within the class
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue