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 Abe Leite
Recipients Abe Leite
Date 2019-03-04.02:42:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1551667339.54.0.414288552801.issue36175@roundup.psfhosted.org>
In-reply-to
Content
The following code produces unexpected behavior in all versions of Python I have tested.

>>> class a:
...     def method(self): pass

>>> inst = a()
>>> inst.method is inst.method
False

It appears that id(inst.method) changes each time inst.method is accessed by normal means.

So the tuple (id(inst.method), id(inst.method)) will have the same item repeated, but the tuple (id(inst.method), inst.method, id(inst.method)) will not.

Note that for unbound methods and other functions, this issue does not occur.

This creates a transparency issue for bound instance methods taking the place of functions.

My apologies if this is a design decision that has already been resolved! It just seemed like a strange behavior to me.

--Abe
History
Date User Action Args
2019-03-04 02:42:19Abe Leitesetrecipients: + Abe Leite
2019-03-04 02:42:19Abe Leitesetmessageid: <1551667339.54.0.414288552801.issue36175@roundup.psfhosted.org>
2019-03-04 02:42:19Abe Leitelinkissue36175 messages
2019-03-04 02:42:19Abe Leitecreate