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