(self, obj)
| 433 | return self |
| 434 | |
| 435 | def __array_finalize__(self, obj): |
| 436 | if self.dtype.type is not record and self.dtype.names is not None: |
| 437 | # if self.dtype is not np.record, invoke __setattr__ which will |
| 438 | # convert it to a record if it is a void dtype. |
| 439 | self.dtype = self.dtype |
| 440 | |
| 441 | def __getattribute__(self, attr): |
| 442 | # See if ndarray has this attr, and return it if so. (note that this |
nothing calls this directly
no outgoing calls
no test coverage detected