MCPcopy Create free account
hub / github.com/numpy/numpy / partition

Method partition

numpy/ma/core.py:6054–6058  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

6052 return out
6053
6054 def partition(self, *args, **kwargs):
6055 warnings.warn("Warning: 'partition' will ignore the 'mask' "
6056 f"of the {self.__class__.__name__}.",
6057 stacklevel=2)
6058 return super().partition(*args, **kwargs)
6059
6060 def argpartition(self, *args, **kwargs):
6061 warnings.warn("Warning: 'argpartition' will ignore the 'mask' "

Callers 6

check_doctestsFunction · 0.45
_medianFunction · 0.45
_quantileFunction · 0.45
test_failFunction · 0.45
fromnumeric.pyFile · 0.45

Calls 1

warnMethod · 0.80

Tested by 2

test_failFunction · 0.36