Switch to PEP-604 syntax in python2 stubs (#5915)

Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
This commit is contained in:
Oleg Höfling
2021-08-14 11:12:30 +02:00
committed by GitHub
parent 431c4f7fc1
commit ff63953188
235 changed files with 2473 additions and 2768 deletions

View File

@@ -1,4 +1,4 @@
from typing import Any, Text, TypeVar, Union
from typing import Any, Text, TypeVar
ucd_3_2_0: UCD
ucnhash_CAPI: Any
@@ -9,15 +9,15 @@ _T = TypeVar("_T")
def bidirectional(__chr: Text) -> Text: ...
def category(__chr: Text) -> Text: ...
def combining(__chr: Text) -> int: ...
def decimal(__chr: Text, __default: _T = ...) -> Union[int, _T]: ...
def decimal(__chr: Text, __default: _T = ...) -> int | _T: ...
def decomposition(__chr: Text) -> Text: ...
def digit(__chr: Text, __default: _T = ...) -> Union[int, _T]: ...
def digit(__chr: Text, __default: _T = ...) -> int | _T: ...
def east_asian_width(__chr: Text) -> Text: ...
def lookup(__name: Union[Text, bytes]) -> Text: ...
def lookup(__name: Text | bytes) -> Text: ...
def mirrored(__chr: Text) -> int: ...
def name(__chr: Text, __default: _T = ...) -> Union[Text, _T]: ...
def name(__chr: Text, __default: _T = ...) -> Text | _T: ...
def normalize(__form: Text, __unistr: Text) -> Text: ...
def numeric(__chr: Text, __default: _T = ...) -> Union[float, _T]: ...
def numeric(__chr: Text, __default: _T = ...) -> float | _T: ...
class UCD(object):
# The methods below are constructed from the same array in C
@@ -26,12 +26,12 @@ class UCD(object):
def bidirectional(self, __chr: Text) -> str: ...
def category(self, __chr: Text) -> str: ...
def combining(self, __chr: Text) -> int: ...
def decimal(self, __chr: Text, __default: _T = ...) -> Union[int, _T]: ...
def decimal(self, __chr: Text, __default: _T = ...) -> int | _T: ...
def decomposition(self, __chr: Text) -> str: ...
def digit(self, __chr: Text, __default: _T = ...) -> Union[int, _T]: ...
def digit(self, __chr: Text, __default: _T = ...) -> int | _T: ...
def east_asian_width(self, __chr: Text) -> str: ...
def lookup(self, __name: Union[Text, bytes]) -> Text: ...
def lookup(self, __name: Text | bytes) -> Text: ...
def mirrored(self, __chr: Text) -> int: ...
def name(self, __chr: Text, __default: _T = ...) -> Union[Text, _T]: ...
def name(self, __chr: Text, __default: _T = ...) -> Text | _T: ...
def normalize(self, __form: Text, __unistr: Text) -> Text: ...
def numeric(self, __chr: Text, __default: _T = ...) -> Union[float, _T]: ...
def numeric(self, __chr: Text, __default: _T = ...) -> float | _T: ...