(self, name, pubid, system)
| 207 | self.soup.handle_data(content) |
| 208 | |
| 209 | def doctype(self, name, pubid, system): |
| 210 | self.soup.endData() |
| 211 | doctype = Doctype.for_name_and_ids(name, pubid, system) |
| 212 | self.soup.object_was_parsed(doctype) |
| 213 | |
| 214 | def comment(self, content): |
| 215 | "Handle comments as Comment objects." |
nothing calls this directly
no test coverage detected