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):