Exemplo n.º 1
0
 def get_driver_version(self):
     "Returns the version number of the driver."
     raise _exceptions.SAXException("Method not supported.", None)
Exemplo n.º 2
0
 def get_parser_name(self):
     "Returns a single-word parser name."
     raise _exceptions.SAXException("Method not supported.", None)
Exemplo n.º 3
0
 def get_parser_version(self):
     """Returns the version of the imported parser, which may not be the
     one the driver was implemented for."""
     raise _exceptions.SAXException("Method not supported.", None)
Exemplo n.º 4
0
 def close(self):
     "Called after the last call to feed, when there are no more data."
     raise _exceptions.SAXException("Method not supported.", None)
Exemplo n.º 5
0
 def feed(self, data):
     "Feeds data to the parser."
     raise _exceptions.SAXException("Method not supported.", None)
Exemplo n.º 6
0
 def reset(self):
     "Makes the parser start parsing afresh."
     raise _exceptions.SAXException("Method not supported.", None)
Exemplo n.º 7
0
 def is_dtd_reading(self):
     """True if the parser is non-validating, but conforms to the spec by
     reading the DTD."""
     raise _exceptions.SAXException("Method not supported.", None)
Exemplo n.º 8
0
 def is_validating(self):
     "True if the parser is validating, false otherwise."
     raise _exceptions.SAXException("Method not supported.", None)