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