(self, old)
| 354 | def test_nonbaseclass_values(self): |
| 355 | class SubClass(np.ndarray): |
| 356 | def __array_finalize__(self, old): |
| 357 | # Have array finalize do funny things |
| 358 | self.fill(99) |
| 359 | |
| 360 | a = np.zeros((5, 5)) |
| 361 | s = a.copy().view(type=SubClass) |
nothing calls this directly
no outgoing calls
no test coverage detected