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

Method __floordiv__

numpy/ma/core.py:4284–4291  ·  view source on GitHub ↗

Divide other into self, and return a new masked array.

(self, other)

Source from the content-addressed store, hash-verified

4282 return true_divide(other, self)
4283
4284 def __floordiv__(self, other):
4285 """
4286 Divide other into self, and return a new masked array.
4287
4288 """
4289 if self._delegate_binop(other):
4290 return NotImplemented
4291 return floor_divide(self, other)
4292
4293 def __rfloordiv__(self, other):
4294 """

Callers

nothing calls this directly

Calls 2

_delegate_binopMethod · 0.95
floor_divideFunction · 0.85

Tested by

no test coverage detected