Return tuple of base classes (including cls) in method resolution order.
(cls)
| 655 | # ----------------------------------------------------------- class helpers |
| 656 | |
| 657 | def getmro(cls): |
| 658 | "Return tuple of base classes (including cls) in method resolution order." |
| 659 | return cls.__mro__ |
| 660 | |
| 661 | # -------------------------------------------------------- function helpers |
| 662 |
no outgoing calls
no test coverage detected
searching dependent graphs…