(cls, class_: Type[Any])
| 2150 | |
| 2151 | @classmethod |
| 2152 | def has_cls(cls, class_: Type[Any]) -> bool: |
| 2153 | # 2.6 fails on weakref if class_ is an old style class |
| 2154 | return isinstance(class_, type) and weakref.ref(class_) in cls._configs |
| 2155 | |
| 2156 | @classmethod |
| 2157 | def raise_unmapped_for_cls(cls, class_: Type[Any]) -> NoReturn: |
no outgoing calls
no test coverage detected