90c90
< from HTMLParser import HTMLParser, HTMLParseError
---
> from html.parser import HTMLParser, HTMLParseError
92c92
< from htmlentitydefs import name2codepoint
---
> from html.entities import name2codepoint
337c337
< i = g.next()
---
> i = g.__next__()