(self)
| 359 | |
| 360 | @cached_property |
| 361 | def _getattr_methods(self) -> set[Callable]: |
| 362 | return self._safe_get_methods(self.allowed_getattr, "__getattr__") |
| 363 | |
| 364 | @cached_property |
| 365 | def _getattribute_methods(self) -> set[Callable]: |
nothing calls this directly
no test coverage detected