diff options
author | Fred Drake <fdrake@acm.org> | 2008-05-17 22:02:32 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2008-05-17 22:02:32 (GMT) |
commit | 3c50ea4303ad58785e7f5058cdd353c6d0140ee4 (patch) | |
tree | 127214cdbbaac0fad36eb75b08e7868a666283c8 /Lib/test/test_multibytecodec_support.py | |
parent | 9b020c784c3a1ec3d412bca1ffed2d24232b0a54 (diff) | |
download | cpython-3c50ea4303ad58785e7f5058cdd353c6d0140ee4.zip cpython-3c50ea4303ad58785e7f5058cdd353c6d0140ee4.tar.gz cpython-3c50ea4303ad58785e7f5058cdd353c6d0140ee4.tar.bz2 |
rename HTMLParser to html.parser and htmlentitydefs to html.entities;
includes merge of trunk revision 63432
Diffstat (limited to 'Lib/test/test_multibytecodec_support.py')
-rw-r--r-- | Lib/test/test_multibytecodec_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_multibytecodec_support.py b/Lib/test/test_multibytecodec_support.py index 48e9089..5508c9d 100644 --- a/Lib/test/test_multibytecodec_support.py +++ b/Lib/test/test_multibytecodec_support.py @@ -74,7 +74,7 @@ class TestBase: if self.has_iso10646: return - from htmlentitydefs import codepoint2name + from html.entities import codepoint2name def xmlcharnamereplace(exc): if not isinstance(exc, UnicodeEncodeError): |