Searched refs:getmro (Results 1 – 22 of 22) sorted by relevance
72 mro = list(inspect.getmro(obj.__class__))74 mro = list(inspect.getmro(obj))
82 mro = list(inspect.getmro(obj.__class__))84 mro = list(inspect.getmro(obj))
37 hierarchy_a = tf_inspect.getmro(type_a)38 hierarchy_b = tf_inspect.getmro(type_b)
187 mro = list(tf_inspect.getmro(obj.__class__))189 mro = list(tf_inspect.getmro(obj))
335 def getmro(cls): function337 return _inspect.getmro(cls)
349 def getmro(cls): function351 return _inspect.getmro(cls)
123 and 'TestCase' in (p.__name__ for p in tf_inspect.getmro(obj)))
33 return inspect.getmro(cls)
33 enumerated_hierarchies = [enumerate(tf_inspect.getmro(t)) for t in type_list]
175 for cls in tf_inspect.getmro(obj):
220 for super_class in inspect.getmro(owner_class):
286 mro = getmro(cls)339 def getmro(cls): function
767 mro = deque(inspect.getmro(object))1192 mro = deque(inspect.getmro(object))
482 got = inspect.getmro(D)493 got = inspect.getmro(D)
448 mro = (object,) + getmro(object)517 mro = getmro(cls)518 metamro = getmro(type(cls)) # for attributes stored in the metaclass606 def getmro(cls): function
877 mro = deque(inspect.getmro(object))1334 mro = deque(inspect.getmro(object))
518 .. function:: getmro(cls)
3150 types = _always_object(inspect.getmro(getattr(ob, '__class__', type(ob))))
1052 .. function:: getmro(cls)
853 got = inspect.getmro(D)
2505 * #1092: ``pkg_resources`` now uses ``inspect.getmro`` to