This method is called by the parse implementation to allow the SAX 2.0 driver to prepare itself for parsing.
(self, source)
| 134 | raise NotImplementedError("This method must be implemented!") |
| 135 | |
| 136 | def prepareParser(self, source): |
| 137 | """This method is called by the parse implementation to allow |
| 138 | the SAX 2.0 driver to prepare itself for parsing.""" |
| 139 | raise NotImplementedError("prepareParser must be overridden!") |
| 140 | |
| 141 | def close(self): |
| 142 | """This method is called when the entire XML document has been |