コード例 #1
0
ファイル: saxexts.py プロジェクト: AhmedSeyam2020/HBL
 def get_driver_version(self):
     "Returns the version number of the driver."
     raise _exceptions.SAXException("Method not supported.", None)
コード例 #2
0
ファイル: saxexts.py プロジェクト: AhmedSeyam2020/HBL
 def get_parser_name(self):
     "Returns a single-word parser name."
     raise _exceptions.SAXException("Method not supported.", None)
コード例 #3
0
ファイル: saxexts.py プロジェクト: AhmedSeyam2020/HBL
 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)
コード例 #4
0
ファイル: saxexts.py プロジェクト: AhmedSeyam2020/HBL
 def close(self):
     "Called after the last call to feed, when there are no more data."
     raise _exceptions.SAXException("Method not supported.", None)
コード例 #5
0
ファイル: saxexts.py プロジェクト: AhmedSeyam2020/HBL
 def feed(self, data):
     "Feeds data to the parser."
     raise _exceptions.SAXException("Method not supported.", None)
コード例 #6
0
ファイル: saxexts.py プロジェクト: AhmedSeyam2020/HBL
 def reset(self):
     "Makes the parser start parsing afresh."
     raise _exceptions.SAXException("Method not supported.", None)
コード例 #7
0
ファイル: saxexts.py プロジェクト: AhmedSeyam2020/HBL
 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)
コード例 #8
0
ファイル: saxexts.py プロジェクト: AhmedSeyam2020/HBL
 def is_validating(self):
     "True if the parser is validating, false otherwise."
     raise _exceptions.SAXException("Method not supported.", None)