Files
typeshed/stdlib/2/htmlentitydefs.pyi
Jon Dufresne f2fdb54765 Precise the type of Python 2 htmlentitydefs module (#3163)
The code and documentation specifies the values specifically as
dictionaries.
2019-07-31 15:45:50 +02:00

6 lines
114 B
Python

from typing import Dict
name2codepoint: Dict[str, int]
codepoint2name: Dict[int, str]
entitydefs: Dict[str, str]