: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
* ``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