blob: 340b6234ed36fef1920f7184aee2bdaa02f78703 [file] [log] [blame]
Fred Drake91ae2502008-05-17 20:30:04 +00001from warnings import warnpy3k
2
3warnpy3k(("The htmlentitydefs module has been renamed to html.entities"
4 " in Python 3.0"), stacklevel=2)
5
6from sys import modules
7import html.entities
8modules["htmlentitydefs"] = html.entities