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 debuggy
Recipients debuggy, docs@python
Date 2017-05-06.13:05:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1494075943.31.0.565968699812.issue30292@psf.upfronthosting.co.za>
In-reply-to
Content
When I read <Descriptor HowTo Guide> (python 3.6.1 version), I found there is a concept of 'unbound method' in some places. However, when I referred to <What’s New In Python 3.0>, it said the concept of “unbound methods” has been removed from the language.

So I wondered if there should be a change in <Descriptor HowTo Guide> python3 version?

For instance, in this code example of the guide:

>>> class D(object):
...     def f(self, x):
...         return x
...
>>> d = D()
>>> D.__dict__['f']  # Stored internally as a function
<function f at 0x00C45070>
>>> D.f              # Get from a class becomes an unbound method
<unbound method D.f> 
>>> d.f              # Get from an instance becomes a bound method
<bound method D.f of <__main__.D object at 0x00B18C90>>

When I tested myself, the result of statement "D.f" should be <function> not <unbound method>.
History
Date User Action Args
2017-05-06 13:05:43debuggysetrecipients: + debuggy, docs@python
2017-05-06 13:05:43debuggysetmessageid: <1494075943.31.0.565968699812.issue30292@psf.upfronthosting.co.za>
2017-05-06 13:05:43debuggylinkissue30292 messages
2017-05-06 13:05:43debuggycreate