summaryrefslogtreecommitdiff
path: root/Lib/htmllib.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2008-05-17 22:02:32 +0000
committerFred Drake <fdrake@acm.org>2008-05-17 22:02:32 +0000
commit3c50ea4303ad58785e7f5058cdd353c6d0140ee4 (patch)
tree127214cdbbaac0fad36eb75b08e7868a666283c8 /Lib/htmllib.py
parent9b020c784c3a1ec3d412bca1ffed2d24232b0a54 (diff)
downloadcpython-git-3c50ea4303ad58785e7f5058cdd353c6d0140ee4.tar.gz
rename HTMLParser to html.parser and htmlentitydefs to html.entities;
includes merge of trunk revision 63432
Diffstat (limited to 'Lib/htmllib.py')
-rw-r--r--Lib/htmllib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/htmllib.py b/Lib/htmllib.py
index 88e1df5741..a580006828 100644
--- a/Lib/htmllib.py
+++ b/Lib/htmllib.py
@@ -24,7 +24,7 @@ class HTMLParser(sgmllib.SGMLParser):
"""
- from htmlentitydefs import entitydefs
+ from html.entities import entitydefs
def __init__(self, formatter, verbose=0):
"""Creates an instance of the HTMLParser class.