(klass, attr)
| 1708 | |
| 1709 | |
| 1710 | def _check_class(klass, attr): |
| 1711 | for entry in _static_getmro(klass): |
| 1712 | if _shadowed_dict(type(entry)) is _sentinel and attr in entry.__dict__: |
| 1713 | return entry.__dict__[attr] |
| 1714 | return _sentinel |
| 1715 | |
| 1716 | |
| 1717 | @functools.lru_cache() |
no test coverage detected
searching dependent graphs…