mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
- Updates documentation related to previously required comment headers. - Removes all comment headers from stubs - Occasionally included a header for stubs that were noted to be incomplete or contained todo's.
6 lines
173 B
Python
6 lines
173 B
Python
from typing import Any, Mapping
|
|
|
|
name2codepoint = ... # type: Mapping[str, int]
|
|
codepoint2name = ... # type: Mapping[int, str]
|
|
entitydefs = ... # type: Mapping[str, str]
|