Home | History | Annotate | Download | only in python2.7

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:
805 if mro:
806 thisclass = mro.popleft()
1152 # List the mro, if non-trivial.
1153 mro = deque(inspect.getmro(object))
1154 if len(mro) > 2:
1156 for base in mro:
1214 if mro:
1215 thisclass = mro.popleft()