(self, a)
| 240 | return self._rc(self.array.astype(typecode)) |
| 241 | |
| 242 | def _rc(self, a): |
| 243 | if len(shape(a)) == 0: |
| 244 | return a |
| 245 | else: |
| 246 | return self.__class__(a) |
| 247 | |
| 248 | def __array_wrap__(self, *args): |
| 249 | return self.__class__(args[0]) |
no test coverage detected