diff options
author | Fred Drake <fdrake@acm.org> | 2008-05-17 20:30:04 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2008-05-17 20:30:04 (GMT) |
commit | 91ae2502739ecfcc7a8a013473553224b8387521 (patch) | |
tree | 670ee16e6d1ad3722b0cdefe145408b162396566 /Lib/test | |
parent | c6d64ec83fd6bb170725a04409d8383a53559c95 (diff) | |
download | cpython-91ae2502739ecfcc7a8a013473553224b8387521.zip cpython-91ae2502739ecfcc7a8a013473553224b8387521.tar.gz cpython-91ae2502739ecfcc7a8a013473553224b8387521.tar.bz2 |
rename HTMLParser to html.parser, htmlentitydefs to html.entities
(http://bugs.python.org/issue2882)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_py3kwarn.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py index 2c8f509..1a65323 100644 --- a/Lib/test/test_py3kwarn.py +++ b/Lib/test/test_py3kwarn.py @@ -209,11 +209,13 @@ class TestStdlibRemovals(unittest.TestCase): class TestStdlibRenames(unittest.TestCase): renames = {'copy_reg': 'copyreg', 'Queue': 'queue', + 'htmlentitydefs': 'html.entities', 'SocketServer': 'socketserver', 'ConfigParser': 'configparser', 'repr': 'reprlib', 'FileDialog': 'tkinter.filedialog', 'FixTk': 'tkinter._fix', + 'HTMLParser': 'html.parser', 'ScrolledText': 'tkinter.scrolledtext', 'SimpleDialog': 'tkinter.simpledialog', 'Tix': 'tkinter.tix', |