(self, *args, **kwargs)
| 5784 | return out |
| 5785 | |
| 5786 | def partition(self, *args, **kwargs): |
| 5787 | warnings.warn("Warning: 'partition' will ignore the 'mask' " |
| 5788 | "of the {}.".format(self.__class__.__name__), |
| 5789 | stacklevel=2) |
| 5790 | return super(MaskedArray, self).partition(*args, **kwargs) |
| 5791 | |
| 5792 | def argpartition(self, *args, **kwargs): |
| 5793 | warnings.warn("Warning: 'argpartition' will ignore the 'mask' " |
no test coverage detected