(self, *args, **kwargs)
| 6172 | return super().partition(*args, **kwargs) |
| 6173 | |
| 6174 | def argpartition(self, *args, **kwargs): |
| 6175 | warnings.warn("Warning: 'argpartition' will ignore the 'mask' " |
| 6176 | f"of the {self.__class__.__name__}.", |
| 6177 | stacklevel=2) |
| 6178 | return super().argpartition(*args, **kwargs) |
| 6179 | |
| 6180 | def take(self, indices, axis=None, out=None, mode='raise'): |
| 6181 | """ |
no outgoing calls
no test coverage detected