[Python-Dev] inspect and metaclasses

Ethan Furman ethan at stoneleaf.us
Fri Sep 6 19:01:32 CEST 2013


On 09/06/2013 09:37 AM, R. David Murray wrote:
> On Fri, 06 Sep 2013 08:59:02 -0700, Ethan Furman <ethan at stoneleaf.us> wrote:
>>
>> For the short term I can restrict the change to inspect.classify_class_attrs().
>
> Sounds like the best course.

There is one other function in inspect that calls getmro():

def getmembers(object, predicate=None):
     """Return all members of an object as (name, value) pairs sorted by name.
     Optionally, only return members that satisfy a given predicate."""
     if isclass(object):
         mro = (object,) + getmro(object)

Should I add `+ getmro(type(object))` here as well?

--
~Ethan~


More information about the Python-Dev mailing list