(self, a)
| 263 | return self._rc(self.array.astype(typecode)) |
| 264 | |
| 265 | def _rc(self, a): |
| 266 | if len(shape(a)) == 0: |
| 267 | return a |
| 268 | else: |
| 269 | return self.__class__(a) |
| 270 | |
| 271 | def __array_wrap__(self, *args): |
| 272 | return self.__class__(args[0]) |
no test coverage detected