(self, attr)
| 131 | __hash__ = None # type: ignore |
| 132 | |
| 133 | def __getattr__(self, attr): |
| 134 | # type: (str) -> Any |
| 135 | if attr in ["__setstate__", "__getstate__"]: |
| 136 | raise AttributeError(attr) |
| 137 | return getattr(self._fix(), attr) |
| 138 | |
| 139 | def __str__(self): |
| 140 | # type: () -> str |