(self, fullname: str)
| 905 | return self._find_hook(lambda plugin: plugin.get_class_decorator_hook_2(fullname)) |
| 906 | |
| 907 | def get_metaclass_hook(self, fullname: str) -> Callable[[ClassDefContext], None] | None: |
| 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)) |
nothing calls this directly
no test coverage detected