MCPcopy Index your code
hub / github.com/python/cpython / getmro

Function getmro

Lib/inspect.py:657–659  ·  view source on GitHub ↗

Return tuple of base classes (including cls) in method resolution order.

(cls)

Source from the content-addressed store, hash-verified

655# ----------------------------------------------------------- class helpers
656
657def getmro(cls):
658 "Return tuple of base classes (including cls) in method resolution order."
659 return cls.__mro__
660
661# -------------------------------------------------------- function helpers
662

Callers 2

_getmembersFunction · 0.85
classify_class_attrsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…