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 eryksun
Recipients David Becher, dholth, docs@python, eryksun, martin.panter, rhettinger
Date 2016-07-08.23:01:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468018872.59.0.649514514082.issue25435@psf.upfronthosting.co.za>
In-reply-to
Content
I'm surprised it's not documented for the types module:

https://docs.python.org/3.5/library/types.html#types.MethodType

At least the docstring has the parameters:

    >>> print(types.MethodType.__doc__)
    method(function, instance)
    
    Create a bound instance method object.
History
Date User Action Args
2016-07-08 23:01:12eryksunsetrecipients: + eryksun, rhettinger, dholth, docs@python, martin.panter, David Becher
2016-07-08 23:01:12eryksunsetmessageid: <1468018872.59.0.649514514082.issue25435@psf.upfronthosting.co.za>
2016-07-08 23:01:12eryksunlinkissue25435 messages
2016-07-08 23:01:12eryksuncreate