Lines Matching refs:SGMLParser
13 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()
82 .. method:: SGMLParser.get_starttag_text()
90 .. method:: SGMLParser.handle_starttag(tag, method, attributes)
115 .. method:: SGMLParser.handle_endtag(tag, method)
125 .. method:: SGMLParser.handle_data(data)
131 .. method:: SGMLParser.handle_charref(ref)
142 .. method:: SGMLParser.convert_charref(ref)
154 .. method:: SGMLParser.convert_codepoint(codepoint)
162 .. method:: SGMLParser.handle_entityref(ref)
175 .. method:: SGMLParser.convert_entityref(ref)
188 .. method:: SGMLParser.handle_comment(comment)
197 .. method:: SGMLParser.handle_decl(data)
207 .. method:: SGMLParser.report_unbalanced(tag)
213 .. method:: SGMLParser.unknown_starttag(tag, attributes)
219 .. method:: SGMLParser.unknown_endtag(tag)
225 .. method:: SGMLParser.unknown_charref(ref)
233 .. method:: SGMLParser.unknown_entityref(ref)
244 .. method:: SGMLParser.start_tag(attributes)
252 .. method:: SGMLParser.do_tag(attributes)
260 .. method:: SGMLParser.end_tag()