Home
last modified time | relevance | path

Searched refs:SGMLParser (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Doc/library/
Dsgmllib.rst13 This module defines a class :class:`SGMLParser` which serves as the basis for
21 .. class:: SGMLParser()
23 The :class:`SGMLParser` class is instantiated without arguments. The parser is
42 Exception raised by the :class:`SGMLParser` class when it encounters an error
47 :class:`SGMLParser` instances have the following methods:
50 .. method:: SGMLParser.reset()
56 .. method:: SGMLParser.setnomoretags()
62 .. method:: SGMLParser.setliteral()
67 .. method:: SGMLParser.feed(data)
74 .. method:: SGMLParser.close()
[all …]
Dhtmllib.rst21 single: SGMLParser (in module sgmllib)
30 the :class:`SGMLParser` class defined in module :mod:`sgmllib`. The
37 :class:`sgmllib.SGMLParser`:
/external/python/cpython2/Lib/test/
Dtest_sgmllib.py8 class EventCollector(sgmllib.SGMLParser):
13 sgmllib.SGMLParser.__init__(self)
92 sgmllib.SGMLParser.handle_charref(self, data)
96 sgmllib.SGMLParser.handle_entityref(self, data)
361 fp = sgmllib.SGMLParser()
/external/python/cpython2/Lib/
Dsgmllib.py60 class SGMLParser(markupbase.ParserBase): class
461 class TestSGMLParser(SGMLParser):
465 SGMLParser.__init__(self, verbose)
512 SGMLParser.close(self)
524 klass = SGMLParser
Dhtmllib.py23 class HTMLParser(sgmllib.SGMLParser):
41 sgmllib.SGMLParser.__init__(self, verbose)
48 sgmllib.SGMLParser.reset(self)
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py86 from sgmllib import SGMLParser, SGMLParseError
1039 class BeautifulStoneSoup(Tag, SGMLParser):
1140 SGMLParser.__init__(self)
1189 SGMLParser.feed(self, markup)
1202 return SGMLParser.__getattr__(self, methodName)
1217 SGMLParser.reset(self)
1463 j = SGMLParser.parse_declaration(self, i)
/external/python/cpython2/Tools/webchecker/
Dwebchecker.py777 class MyHTMLParser(sgmllib.SGMLParser):
786 sgmllib.SGMLParser.__init__(self)