(self)
| 235 | return super().__repr__() |
| 236 | |
| 237 | def __str__(self): |
| 238 | if _get_legacy_print_mode() <= 113: |
| 239 | return str(self.item()) |
| 240 | return super().__str__() |
| 241 | |
| 242 | def __getattribute__(self, attr): |
| 243 | if attr in ('setfield', 'getfield', 'dtype'): |
no test coverage detected