summaryrefslogtreecommitdiff
path: root/BeautifulSoup.py.3.diff
blob: ad3d6e111919cd6cdb19cd66926b09fe562c22e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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__()