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

Method __rpow__

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

Source from the content-addressed store, hash-verified

144 return self._rc(power(self.array, asarray(other)))
145
146 def __rpow__(self, other):
147 return self._rc(power(asarray(other), self.array))
148
149 def __ipow__(self, other):
150 power(self.array, other, self.array)

Callers

nothing calls this directly

Calls 3

_rcMethod · 0.95
asarrayFunction · 0.90
powerFunction · 0.70

Tested by

no test coverage detected