Simplify and correct many numeric unions (#7906)

Unblocks PyCQA/flake8-pyi#222
This commit is contained in:
Alex Waygood
2022-05-21 15:25:00 +01:00
committed by GitHub
parent 7576805aee
commit 76a4bd796b
17 changed files with 30 additions and 26 deletions

View File

@@ -118,7 +118,7 @@ class Fraction(Rational):
@overload
def __pow__(self, b: complex) -> complex: ...
@overload
def __rpow__(self, a: int | float | Fraction) -> float: ...
def __rpow__(self, a: float | Fraction) -> float: ...
@overload
def __rpow__(self, a: complex) -> complex: ...
def __pos__(self) -> Fraction: ...