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 chris.jerdonek
Recipients Dennis Sweeney, chris.jerdonek, xtreak
Date 2020-05-19.22:59:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1589929191.82.0.845820074409.issue40679@roundup.psfhosted.org>
In-reply-to
Content
Thanks! I think it does.

Also, I see now that using the __qualname__ is better than including the object's type for locating the method because you can have cases like super().foo() or even--

class A:
    def foo(self):
        pass

def bar():
    pass

A.foo = bar
History
Date User Action Args
2020-05-19 22:59:51chris.jerdoneksetrecipients: + chris.jerdonek, xtreak, Dennis Sweeney
2020-05-19 22:59:51chris.jerdoneksetmessageid: <1589929191.82.0.845820074409.issue40679@roundup.psfhosted.org>
2020-05-19 22:59:51chris.jerdoneklinkissue40679 messages
2020-05-19 22:59:51chris.jerdonekcreate