(self)
| 208 | return super().__repr__() |
| 209 | |
| 210 | def __str__(self): |
| 211 | if _get_legacy_print_mode() <= 113: |
| 212 | return str(self.item()) |
| 213 | return super().__str__() |
| 214 | |
| 215 | def __getattribute__(self, attr): |
| 216 | if attr in ('setfield', 'getfield', 'dtype'): |
no test coverage detected