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 marcosmodenesi
Recipients docs@python, marcosmodenesi
Date 2021-03-07.15:42:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1615131755.48.0.550524446603.issue43427@roundup.psfhosted.org>
In-reply-to
Content
> To recap, functions have a __get__() method so that they can be converted to a method when accessed as attributes. The non-data descriptor transforms an obj.f(*args) call into f(obj, *args). Calling cls.f(*args) becomes f(*args).

I THINK it should say

cls.f(*args) becomes f(cls, *args)

as stated in the table that follows that paragraph.
History
Date User Action Args
2021-03-07 15:42:35marcosmodenesisetrecipients: + marcosmodenesi, docs@python
2021-03-07 15:42:35marcosmodenesisetmessageid: <1615131755.48.0.550524446603.issue43427@roundup.psfhosted.org>
2021-03-07 15:42:35marcosmodenesilinkissue43427 messages
2021-03-07 15:42:35marcosmodenesicreate