Message 306489 - Python tracker

Message306489

Author haikuginger
Recipients docs@python, haikuginger
Date 2017-11-18.18:04:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511028255.0.0.213398074469.issue32070@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like the original staticmethod docstring might have been based on the classmethod docstring, and it seems like the current description might not be accurate.

Current string:

...It can be called either on the class (e.g. C.f()) or on an instance (e.g. C().f()); the instance is ignored except for its class...

Proposed change:

It can be called either on the class (e.g. C.f()) or on an instance (e.g. C().f()). Both the class and the instance are ignored, and neither is passed implicitly as the first argument to the method.
History
Date User Action Args
2017-11-18 18:04:15haikugingersetrecipients: + haikuginger, docs@python
2017-11-18 18:04:15haikugingersetmessageid: <1511028255.0.0.213398074469.issue32070@psf.upfronthosting.co.za>
2017-11-18 18:04:14haikugingerlinkissue32070 messages
2017-11-18 18:04:14haikugingercreate