Home
last modified time | relevance | path

Searched refs:sgmllib (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_sgmllib.py5 sgmllib = test_support.import_module('sgmllib', deprecated=True) variable
8 class EventCollector(sgmllib.SGMLParser):
13 sgmllib.SGMLParser.__init__(self)
92 sgmllib.SGMLParser.handle_charref(self, data)
96 sgmllib.SGMLParser.handle_entityref(self, data)
131 except sgmllib.SGMLParseError:
361 fp = sgmllib.SGMLParser()
/external/python/cpython2/Lib/
Dhtmllib.py12 import sgmllib
19 class HTMLParseError(sgmllib.SGMLParseError):
23 class HTMLParser(sgmllib.SGMLParser):
41 sgmllib.SGMLParser.__init__(self, verbose)
48 sgmllib.SGMLParser.reset(self)
/external/python/cpython2/Doc/library/
Dhtmllib.rst19 module: sgmllib
21 single: SGMLParser (in module sgmllib)
30 the :class:`SGMLParser` class defined in module :mod:`sgmllib`. The
37 :class:`sgmllib.SGMLParser`:
93 Module :mod:`sgmllib`
Dmarkup.rst26 sgmllib.rst
Dsgmllib.rst1 :mod:`sgmllib` --- Simple SGML parser
4 .. module:: sgmllib
9 The :mod:`sgmllib` module has been removed in Python 3.
157 appropriate, though the rest of :mod:`sgmllib` is oblivious on this matter.
Dhtmlparser.rst28 in :mod:`sgmllib`.
/external/python/cpython2/Tools/webchecker/
Dwebchecker.py118 import sgmllib
405 except sgmllib.SGMLParseError, msg:
777 class MyHTMLParser(sgmllib.SGMLParser):
786 sgmllib.SGMLParser.__init__(self)
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py86 from sgmllib import SGMLParser, SGMLParseError
91 import sgmllib
102 sgmllib.tagfind = re.compile('[a-zA-Z][-_.:a-zA-Z0-9]*')
/external/python/cpython2/Misc/NEWS.d/
D2.6b1.rst431 The sgmllib and htmllib modules have been deprecated for removal in Python
D2.6a1.rst3773 Reverted change to sgmllib because it introduced an infinite loop.
/external/python/cpython2/Misc/
DHISTORY459 - Bug #1504333: Make sgmllib support angle brackets in quoted
463 sgmllib ('[' and ']' were not accepted).
1564 - Patch #1462498: sgmllib now handles entity and character references
4395 - sgmllib now supports SGML marked sections, in particular the
7493 sgmllib, netrc, chunk) found by Neil Norwitz's PyChecker.
7682 - sgmllib.py now calls handle_decl() for simple <!...> declarations.
10770 - In sgmllib (and hence htmllib), recognize attributes even if they
11293 - sgmllib.py: support tags with - or . in their name.
11698 - In sgmllib.py, restore the call to report_unbalanced() that was lost
13775 - The sgmllib.py module accepts hyphens and periods in the middle of
[all …]
Dcheatsheet1967 sgmllib A parser for SGML.
/external/python/cpython3/Misc/
DHISTORY16711 - Removed the ``htmllib`` and ``sgmllib`` modules.
17843 - Bug #1504333: Make sgmllib support angle brackets in quoted
17847 sgmllib ('[' and ']' were not accepted).
18948 - Patch #1462498: sgmllib now handles entity and character references
21779 - sgmllib now supports SGML marked sections, in particular the
24872 sgmllib, netrc, chunk) found by Neil Norwitz's PyChecker.
25061 - sgmllib.py now calls handle_decl() for simple <!...> declarations.
28149 - In sgmllib (and hence htmllib), recognize attributes even if they
28672 - sgmllib.py: support tags with - or . in their name.
29077 - In sgmllib.py, restore the call to report_unbalanced() that was lost
[all …]