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

Method __rdivmod__

numpy/lib/user_array.py:112–114  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

110 self._rc(remainder(self.array, other)))
111
112 def __rdivmod__(self, other):
113 return (self._rc(divide(other, self.array)),
114 self._rc(remainder(other, self.array)))
115
116 def __pow__(self, other):
117 return self._rc(power(self.array, asarray(other)))

Callers

nothing calls this directly

Calls 3

_rcMethod · 0.95
divideFunction · 0.85
remainderFunction · 0.85

Tested by

no test coverage detected