Searched refs:SGMLParser (Results 1 – 7 of 7) sorted by relevance
13 This module defines a class :class:`SGMLParser` which serves as the basis for21 .. class:: SGMLParser()23 The :class:`SGMLParser` class is instantiated without arguments. The parser is42 Exception raised by the :class:`SGMLParser` class when it encounters an error47 :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 …]
21 single: SGMLParser (in module sgmllib)30 the :class:`SGMLParser` class defined in module :mod:`sgmllib`. The37 :class:`sgmllib.SGMLParser`:
8 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()
60 class SGMLParser(markupbase.ParserBase): class461 class TestSGMLParser(SGMLParser):465 SGMLParser.__init__(self, verbose)512 SGMLParser.close(self)524 klass = SGMLParser
23 class HTMLParser(sgmllib.SGMLParser):41 sgmllib.SGMLParser.__init__(self, verbose)48 sgmllib.SGMLParser.reset(self)
86 from sgmllib import SGMLParser, SGMLParseError1039 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)
777 class MyHTMLParser(sgmllib.SGMLParser):786 sgmllib.SGMLParser.__init__(self)