summaryrefslogtreecommitdiffstats
path: root/Lib/lib-old/HTMLParser.py
blob: ae42e0f0a5ef9116c8bbcaa8cf5d49c7036865de (plain)
1
2
3
4
5
6
7
8
from warnings import warnpy3k

warnpy3k(("The HTMLParser module has been renamed to html.parser"
          " in Python 3.0"), stacklevel=2)

from sys import modules
import html.parser
modules["HTMLParser"] = html.parser