(self, prefix)
| 400 | self._cont_handler.startPrefixMapping(prefix, uri) |
| 401 | |
| 402 | def end_namespace_decl(self, prefix): |
| 403 | self._cont_handler.endPrefixMapping(prefix) |
| 404 | |
| 405 | def start_doctype_decl(self, name, sysid, pubid, has_internal_subset): |
| 406 | self._lex_handler_prop.startDTD(name, pubid, sysid) |
nothing calls this directly
no test coverage detected