commit | ac19d85e04855642a856473b91f3d621e844ad52 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Jun 01 21:19:14 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Jun 01 21:19:14 2008 +0000 |
tree | 63a44aba6093a578462f2ec5f5c4b1d7ecf767bb | |
parent | 681001e11ba164c67a42251bd2bcee2b260188c3 [diff] [blame] |
Deprecate htmllib and sgmllib for 3.0.
diff --git a/Lib/test/test_sgmllib.py b/Lib/test/test_sgmllib.py index d9c9ddc..34fd7f0 100644 --- a/Lib/test/test_sgmllib.py +++ b/Lib/test/test_sgmllib.py
@@ -1,8 +1,8 @@ import pprint import re -import sgmllib import unittest from test import test_support +sgmllib = test_support.import_module('sgmllib', deprecated=True) class EventCollector(sgmllib.SGMLParser):