Remove Python 3.7 branches (#11238)

This commit is contained in:
Sebastian Rittau
2024-01-05 11:39:39 +01:00
committed by GitHub
parent 4e62577002
commit 23604858a6
122 changed files with 1952 additions and 3800 deletions

View File

@@ -27,10 +27,7 @@ def digit(__chr: str, __default: _T) -> int | _T: ...
_EastAsianWidth: TypeAlias = Literal["F", "H", "W", "Na", "A", "N"]
def east_asian_width(__chr: str) -> _EastAsianWidth: ...
if sys.version_info >= (3, 8):
def is_normalized(__form: str, __unistr: str) -> bool: ...
def is_normalized(__form: str, __unistr: str) -> bool: ...
def lookup(__name: str | ReadOnlyBuffer) -> str: ...
def mirrored(__chr: str) -> int: ...
@overload
@@ -60,9 +57,7 @@ class UCD:
@overload
def digit(self, __chr: str, __default: _T) -> int | _T: ...
def east_asian_width(self, __chr: str) -> _EastAsianWidth: ...
if sys.version_info >= (3, 8):
def is_normalized(self, __form: str, __unistr: str) -> bool: ...
def is_normalized(self, __form: str, __unistr: str) -> bool: ...
def lookup(self, __name: str | ReadOnlyBuffer) -> str: ...
def mirrored(self, __chr: str) -> int: ...
@overload