Handle DOCTYPEs and the like as Declaration objects.
(self, data)
| 1444 | self.handle_data(data) |
| 1445 | |
| 1446 | def handle_decl(self, data): |
| 1447 | "Handle DOCTYPEs and the like as Declaration objects." |
| 1448 | self._toStringSubclass(data, Declaration) |
| 1449 | |
| 1450 | def parse_declaration(self, i): |
| 1451 | """Treat a bogus SGML declaration as raw data. Treat a CDATA |
nothing calls this directly
no test coverage detected