Big diff: Use new "|" union syntax (#5872)

This commit is contained in:
Akuli
2021-08-08 12:05:21 +03:00
committed by GitHub
parent b9adb7a874
commit ee487304d7
578 changed files with 8080 additions and 8966 deletions

View File

@@ -2,7 +2,7 @@
# signatures are currently omitted.
from abc import ABCMeta, abstractmethod
from typing import Any, Optional, SupportsFloat, overload
from typing import Any, SupportsFloat, overload
class Number(metaclass=ABCMeta):
@abstractmethod
@@ -94,7 +94,7 @@ class Integral(Rational):
def __int__(self) -> int: ...
def __index__(self) -> int: ...
@abstractmethod
def __pow__(self, exponent: Any, modulus: Optional[Any] = ...) -> Any: ...
def __pow__(self, exponent: Any, modulus: Any | None = ...) -> Any: ...
@abstractmethod
def __lshift__(self, other: Any) -> Any: ...
@abstractmethod