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

Method __ipow__

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

Source from the content-addressed store, hash-verified

120 return self._rc(power(asarray(other), self.array))
121
122 def __ipow__(self, other):
123 power(self.array, other, self.array)
124 return self
125
126 def __lshift__(self, other):
127 return self._rc(left_shift(self.array, other))

Callers

nothing calls this directly

Calls 1

powerFunction · 0.90

Tested by

no test coverage detected