(self, fullname: str)
| 908 | return self._find_hook(lambda plugin: plugin.get_metaclass_hook(fullname)) |
| 909 | |
| 910 | def get_base_class_hook(self, fullname: str) -> Callable[[ClassDefContext], None] | None: |
| 911 | return self._find_hook(lambda plugin: plugin.get_base_class_hook(fullname)) |
| 912 | |
| 913 | def get_customize_class_mro_hook( |
| 914 | self, fullname: str |
nothing calls this directly
no test coverage detected