| 8 | # HTMLParseError was removed in Python 3.5. It could never be |
| 9 | # thrown, so we define a placeholder instead. |
| 10 | class HTMLParseError(Exception): |
| 11 | pass |
| 12 | |
| 13 | from html.entities import name2codepoint |
| 14 | import sys |
nothing calls this directly
no outgoing calls
no test coverage detected