Genshi's HTMLParser referenced Python's html.HTMLParseError exception type in its try except clause. This exception class was deprecated in Python 3.3, removed in Python 3.5, and was not raised except in strict mode which, as far as I can tell from the version history, Genshi never used.
Genshi's HTMLParser referenced Python's
html.HTMLParseError
exception type in its try except clause. This exception class was deprecated in Python 3.3, removed in Python 3.5, and was not raised except in strict mode which, as far as I can tell from the version history, Genshi never used.See https://docs.python.org/3.4/library/html.parser.html#html.parser.HTMLParseError.
Fixes #85.