Home | History | Annotate | Download | only in Lib

Lines Matching refs:mro

766         # List the mro, if non-trivial.
767 mro = deque(inspect.getmro(object))
768 if len(mro) > 2:
771 for base in mro:
844 if mro:
845 thisclass = mro.popleft()
1191 # List the mro, if non-trivial.
1192 mro = deque(inspect.getmro(object))
1193 if len(mro) > 2:
1195 for base in mro:
1253 if mro:
1254 thisclass = mro.popleft()