Handle comments as Comment objects.
(self, text)
| 1389 | self._toStringSubclass(text, ProcessingInstruction) |
| 1390 | |
| 1391 | def handle_comment(self, text): |
| 1392 | "Handle comments as Comment objects." |
| 1393 | self._toStringSubclass(text, Comment) |
| 1394 | |
| 1395 | def handle_charref(self, ref): |
| 1396 | "Handle character references as data." |
nothing calls this directly
no test coverage detected