mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Deprecate htmllib and sgmllib for 3.0.
This commit is contained in:
parent
681001e11b
commit
ac19d85e04
8 changed files with 26 additions and 8 deletions
|
@ -4,6 +4,11 @@ See the HTML 2.0 specification:
|
|||
http://www.w3.org/hypertext/WWW/MarkUp/html-spec/html-spec_toc.html
|
||||
"""
|
||||
|
||||
from warnings import warnpy3k
|
||||
warnpy3k("the htmllib module has been removed in Python 3.0",
|
||||
stacklevel=2)
|
||||
del warnpy3k
|
||||
|
||||
import sgmllib
|
||||
|
||||
from formatter import AS_IS
|
||||
|
|
|
@ -9,6 +9,11 @@
|
|||
# not supported at all.
|
||||
|
||||
|
||||
from warnings import warnpy3k
|
||||
warnpy3k("the sgmllib module has been removed in Python 3.0",
|
||||
stacklevel=2)
|
||||
del warnpy3k
|
||||
|
||||
import markupbase
|
||||
import re
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import formatter
|
||||
import htmllib
|
||||
import unittest
|
||||
|
||||
from test import test_support
|
||||
htmllib = test_support.import_module('htmllib', deprecated=True)
|
||||
|
||||
|
||||
class AnchorCollector(htmllib.HTMLParser):
|
||||
|
|
|
@ -137,7 +137,7 @@ class TestStdlibRemovals(unittest.TestCase):
|
|||
# import side-effect.
|
||||
all_platforms = ('audiodev', 'imputil', 'mutex', 'user', 'new', 'rexec',
|
||||
'Bastion', 'compiler', 'dircache', 'fpformat',
|
||||
'ihooks', 'mhlib', 'statvfs')
|
||||
'ihooks', 'mhlib', 'statvfs', 'htmllib', 'sgmllib')
|
||||
inclusive_platforms = {'irix' : ('pure', 'AL', 'al', 'CD', 'cd', 'cddb',
|
||||
'cdplayer', 'CL', 'cl', 'DEVICE', 'GL',
|
||||
'gl', 'ERRNO', 'FILE', 'FL', 'flp', 'fl',
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue