We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab1514 commit 8466c48Copy full SHA for 8466c48
arraycontext/container/__init__.py
@@ -168,6 +168,8 @@ def __mul__(self, other: ArrayOrScalar | Self) -> Self: ...
168
def __rmul__(self, other: ArrayOrScalar | Self) -> Self: ...
169
def __truediv__(self, other: ArrayOrScalar | Self) -> Self: ...
170
def __rtruediv__(self, other: ArrayOrScalar | Self) -> Self: ...
171
+ def __pow__(self, other: ArrayOrScalar | Self) -> Self: ...
172
+ def __rpow__(self, other: ArrayOrScalar | Self) -> Self: ...
173
174
175
ArrayContainerT = TypeVar("ArrayContainerT", bound=ArrayContainer)
0 commit comments