Home | History | Annotate | Download | only in Lib

Lines Matching refs:mro

727         # List the mro, if non-trivial.

728 mro = deque(inspect.getmro(object))
729 if len(mro) > 2:
732 for base in mro:
793 if mro:
794 thisclass = mro.popleft()
1140 # List the mro, if non-trivial.
1141 mro = deque(inspect.getmro(object))
1142 if len(mro) > 2:
1144 for base in mro:
1195 if mro:
1196 thisclass = mro