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 7b76fb9 commit bee236fCopy full SHA for bee236f
stdlib/3/builtins.pyi
@@ -196,7 +196,7 @@ class float:
196
def __truediv__(self, x: float) -> float: ...
197
def __mod__(self, x: float) -> float: ...
198
def __divmod__(self, x: float) -> Tuple[float, float]: ...
199
- def __pow__(self, x: float) -> float: ...
+ def __pow__(self, x: float) -> float: ... # Returns complex if self is negative and x is not whole
200
def __radd__(self, x: float) -> float: ...
201
def __rsub__(self, x: float) -> float: ...
202
def __rmul__(self, x: float) -> float: ...
0 commit comments