(self)
| 420 | class ArrayLike: |
| 421 | # Simple array, should behave like the array |
| 422 | def __array__(self): |
| 423 | return np.array(0) |
| 424 | |
| 425 | a = np.zeros(()) |
| 426 | assert_(isinstance(a[()], np.float_)) |
nothing calls this directly
no outgoing calls
no test coverage detected