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

Method __rpow__

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

Source from the content-addressed store, hash-verified

117 return self._rc(power(self.array, asarray(other)))
118
119 def __rpow__(self, other):
120 return self._rc(power(asarray(other), self.array))
121
122 def __ipow__(self, other):
123 power(self.array, other, self.array)

Callers

nothing calls this directly

Calls 3

_rcMethod · 0.95
powerFunction · 0.90
asarrayFunction · 0.90

Tested by

no test coverage detected