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.
float.__rpow__
1 parent 98afaa4 commit d5101dcCopy full SHA for d5101dc
stdlib/builtins.pyi
@@ -296,7 +296,8 @@ class float:
296
def __rtruediv__(self, __x: float) -> float: ...
297
def __rmod__(self, __x: float) -> float: ...
298
def __rdivmod__(self, __x: float) -> tuple[float, float]: ...
299
- def __rpow__(self, __x: float, __mod: None = ...) -> float: ...
+ # Returns complex if the argument is negative.
300
+ def __rpow__(self, __x: float, __mod: None = ...) -> Any: ...
301
def __getnewargs__(self) -> tuple[float]: ...
302
def __trunc__(self) -> int: ...
303
if sys.version_info >= (3, 9):
0 commit comments