Shape of this array
(self)
| 205 | |
| 206 | @property |
| 207 | def shape(self): |
| 208 | """Shape of this array""" |
| 209 | return tuple( |
| 210 | self.handle.contents.shape[i] |
| 211 | for i in range(self.handle.contents.ndim) |
| 212 | ) |
| 213 | |
| 214 | @property |
| 215 | def dtype(self): |
no outgoing calls
no test coverage detected