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

Method __rdiv__

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

Source from the content-addressed store, hash-verified

89 return self._rc(divide(self.array, asarray(other)))
90
91 def __rdiv__(self, other):
92 return self._rc(divide(asarray(other), self.array))
93
94 def __idiv__(self, other):
95 divide(self.array, other, self.array)

Callers

nothing calls this directly

Calls 3

_rcMethod · 0.95
asarrayFunction · 0.90
divideFunction · 0.85

Tested by

no test coverage detected