This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author maggyero
Recipients docs@python, maggyero
Date 2021-04-20.17:48:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1618940932.03.0.571461842576.issue43896@roundup.psfhosted.org>
In-reply-to
Content
This PR updates the page [*Built-in Functions*](https://docs.python.org/3.9/library/functions.html#super) of the Python library documentation: `super` is not a `function` (`isinstance(super, type(lambda: None))` is `False`), it is a `type` (`isinstance(super, type)` is `True`), like `int`, `tuple`, `set`, etc. So it should get the same “class” prefix, i.e.

> **super**([*type*[, *object-or-type*]])

should become

> *class* **super**([*type*[, *object-or-type*]])
History
Date User Action Args
2021-04-20 17:48:52maggyerosetrecipients: + maggyero, docs@python
2021-04-20 17:48:52maggyerosetmessageid: <1618940932.03.0.571461842576.issue43896@roundup.psfhosted.org>
2021-04-20 17:48:52maggyerolinkissue43896 messages
2021-04-20 17:48:51maggyerocreate