(self, prefix, uri)
| 397 | self._cont_handler.characters(data) |
| 398 | |
| 399 | def start_namespace_decl(self, prefix, uri): |
| 400 | self._cont_handler.startPrefixMapping(prefix, uri) |
| 401 | |
| 402 | def end_namespace_decl(self, prefix): |
| 403 | self._cont_handler.endPrefixMapping(prefix) |
nothing calls this directly
no test coverage detected