Searched refs:getmro (Results 1 – 18 of 18) sorted by relevance
69 mro = list(inspect.getmro(obj.__class__))71 mro = list(inspect.getmro(obj))
41 hierarchy_a = tf_inspect.getmro(type_a)42 hierarchy_b = tf_inspect.getmro(type_b)
190 mro = list(tf_inspect.getmro(obj.__class__))192 mro = list(tf_inspect.getmro(obj))
328 def getmro(cls): function330 return _inspect.getmro(cls)
35 return inspect.getmro(cls)
36 enumerated_hierarchies = [enumerate(tf_inspect.getmro(t)) for t in type_list]
143 for cls in tf_inspect.getmro(obj):
286 mro = getmro(cls)339 def getmro(cls): function
767 mro = deque(inspect.getmro(object))1192 mro = deque(inspect.getmro(object))
320 mro = (object,) + getmro(object)389 mro = getmro(cls)390 metamro = getmro(type(cls)) # for attributes stored in the metaclass478 def getmro(cls): function
792 mro = deque(inspect.getmro(object))1249 mro = deque(inspect.getmro(object))
482 got = inspect.getmro(D)493 got = inspect.getmro(D)
820 for cls in tf_inspect.getmro(py_class):
518 .. function:: getmro(cls)
3002 types = _always_object(inspect.getmro(getattr(ob, '__class__', type(ob))))
986 .. function:: getmro(cls)
713 got = inspect.getmro(D)
243 * #1092: ``pkg_resources`` now uses ``inspect.getmro`` to