rename HTMLParser to html.parser, htmlentitydefs to html.entities

(http://bugs.python.org/issue2882)
This commit is contained in:
Fred Drake 2008-05-17 20:30:04 +00:00
parent c6d64ec83f
commit 91ae250273
7 changed files with 23 additions and 0 deletions

View file

@ -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',