(self, name: str)
| 853 | |
| 854 | @internalcode |
| 855 | def __getattr__(self, name: str) -> t.Any: |
| 856 | if name[:2] == "__": |
| 857 | raise AttributeError(name) |
| 858 | |
| 859 | return self._fail_with_undefined_error() |
| 860 | |
| 861 | __add__ = __radd__ = __sub__ = __rsub__ = _fail_with_undefined_error |
| 862 | __mul__ = __rmul__ = __div__ = __rdiv__ = _fail_with_undefined_error |
nothing calls this directly
no test coverage detected