(self, old)
| 718 | # Array finalize should be called on the filled array. |
| 719 | class SubClass(np.ndarray): |
| 720 | def __array_finalize__(self, old): |
| 721 | self.finalize_status = np.array(self) |
| 722 | self.old = old |
| 723 | |
| 724 | s = np.arange(10).view(SubClass) |
| 725 | new_s = s[:3] |
nothing calls this directly
no outgoing calls
no test coverage detected