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 jdemeyer
Recipients Mark.Shannon, jdemeyer, petr.viktorin
Date 2019-05-15.08:39:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557909585.08.0.913937443168.issue36922@roundup.psfhosted.org>
In-reply-to
Content
The new flag Py_TPFLAGS_METHOD_DESCRIPTOR proposed in PEP 590 is meant for classes whose instances behave like unbound methods. In other words, it's meant for objects supporting the LOAD_METHOD optimization. There are two such classes in CPython: function and method_descriptor. But the goal is to enable more such classes.

This is independent from the rest of PEP 590 so let's implement it separately.
History
Date User Action Args
2019-05-15 08:39:45jdemeyersetrecipients: + jdemeyer, petr.viktorin, Mark.Shannon
2019-05-15 08:39:45jdemeyersetmessageid: <1557909585.08.0.913937443168.issue36922@roundup.psfhosted.org>
2019-05-15 08:39:45jdemeyerlinkissue36922 messages
2019-05-15 08:39:44jdemeyercreate