mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
unicodedata: add UCD.is_normalized (#7915)
This commit is contained in:
@@ -38,6 +38,9 @@ class UCD:
|
||||
def decomposition(self, __chr: str) -> str: ...
|
||||
def digit(self, __chr: str, __default: _T = ...) -> int | _T: ...
|
||||
def east_asian_width(self, __chr: str) -> str: ...
|
||||
if sys.version_info >= (3, 8):
|
||||
def is_normalized(self, __form: str, __unistr: str) -> bool: ...
|
||||
|
||||
def lookup(self, __name: str | bytes) -> str: ...
|
||||
def mirrored(self, __chr: str) -> int: ...
|
||||
def name(self, __chr: str, __default: _T = ...) -> str | _T: ...
|
||||
|
||||
Reference in New Issue
Block a user