MCPcopy Index your code
hub / github.com/numpy/numpy / __rdivmod__

Method __rdivmod__

numpy/lib/_user_array_impl.py:139–141  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

137 self._rc(remainder(self.array, other)))
138
139 def __rdivmod__(self, other):
140 return (self._rc(divide(other, self.array)),
141 self._rc(remainder(other, self.array)))
142
143 def __pow__(self, other):
144 return self._rc(power(self.array, asarray(other)))

Callers

nothing calls this directly

Calls 1

_rcMethod · 0.95

Tested by

no test coverage detected