@@ -481,7 +481,7 @@ Expressions
481481 Comparison operator tokens.
482482
483483
484- .. class :: Call(func, args, keywords, starargs, kwargs )
484+ .. class :: Call(func, args, keywords)
485485
486486 A function call. ``func `` is the function, which will often be a
487487 :class: `Name ` or :class: `Attribute ` object. Of the arguments:
@@ -491,7 +491,7 @@ Expressions
491491 arguments passed by keyword.
492492
493493 When creating a ``Call `` node, ``args `` and ``keywords `` are required, but
494- they can be empty lists. `` starargs `` and `` kwargs `` are optional.
494+ they can be empty lists.
495495
496496 .. doctest ::
497497
@@ -1818,7 +1818,7 @@ Function and class definitions
18181818 type_ignores=[])
18191819
18201820
1821- .. class :: ClassDef(name, bases, keywords, starargs, kwargs, body, decorator_list)
1821+ .. class :: ClassDef(name, bases, keywords, body, decorator_list)
18221822
18231823 A class definition.
18241824
@@ -1827,9 +1827,6 @@ Function and class definitions
18271827 * ``keywords `` is a list of :class: `keyword ` nodes, principally for 'metaclass'.
18281828 Other keywords will be passed to the metaclass, as per `PEP-3115
18291829 <https://peps.python.org/pep-3115/> `_.
1830- * ``starargs `` and ``kwargs `` are each a single node, as in a function call.
1831- starargs will be expanded to join the list of base classes, and kwargs will
1832- be passed to the metaclass.
18331830 * ``body `` is a list of nodes representing the code within the class
18341831 definition.
18351832 * ``decorator_list `` is a list of nodes, as in :class: `FunctionDef `.
0 commit comments