Files
typeshed/stdlib/html/entities.pyi
T
2025-08-15 13:19:03 +02:00

9 lines
236 B
Python

from typing import Final
__all__ = ["html5", "name2codepoint", "codepoint2name", "entitydefs"]
name2codepoint: Final[dict[str, int]]
html5: Final[dict[str, str]]
codepoint2name: Final[dict[int, str]]
entitydefs: Final[dict[str, str]]