1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
from typing import Dict, Tuple
from precis_i18n.unicode import UnicodeData
PVALID: str
FREE_PVAL: str
DISALLOWED: str
UNASSIGNED: str
CONTEXTJ: str
CONTEXTO: str
def derived_property(cp: int, ucd: UnicodeData) -> Tuple[str, str]: ...
def in_letter_digits(category: str) -> bool: ...
def in_exceptions(cp: int) -> bool: ...
def in_backward_compatible(cp: int) -> bool: ...
def in_join_control(cp: int) -> bool: ...
def in_old_hangul_jamo(cp: int, ucd: UnicodeData) -> bool: ...
def in_unassigned(cp: int, category: str, ucd: UnicodeData) -> bool: ...
def in_ascii7(cp: int) -> bool: ...
def in_controls(cp: int, ucd: UnicodeData) -> bool: ...
def in_precis_ignorable_properties(cp: int, ucd: UnicodeData) -> bool: ...
def in_spaces(category: str) -> bool: ...
def in_symbols(category: str) -> bool: ...
def in_punctuation(category: str) -> bool: ...
def in_has_compat(cp: int, ucd: UnicodeData) -> bool: ...
def in_other_letter_digits(category: str) -> bool: ...
def exceptions(cp: int) -> str: ...
def backward_compatible(cp: int) -> str: ...
_EXCEPTIONS_TABLE: Dict[bytes, str]
_BACKWARD_COMPATIBLE_TABLE = ...
|