Add type annotations for Python 3 html.entities (#3161)

This commit is contained in:
Jon Dufresne
2019-07-31 06:46:16 -07:00
committed by Sebastian Rittau
parent f2fdb54765
commit 02401c836f

View File

@@ -1,6 +1,6 @@
from typing import Any
from typing import Dict
name2codepoint: Any
html5: Any
codepoint2name: Any
entitydefs: Any
name2codepoint: Dict[str, int]
html5: Dict[str, str]
codepoint2name: Dict[int, str]
entitydefs: Dict[str, str]