(self,data)
| 85 | self.output += '<!' + data + '>' |
| 86 | self.last = "decl" |
| 87 | def handle_pi(self,data): |
| 88 | self.output += '<?' + data + '>' |
| 89 | self.last = "pi" |
| 90 | def handle_entityref(self, name): |
| 91 | try: |
| 92 | c = chr(name2codepoint[name]) |
nothing calls this directly
no outgoing calls
no test coverage detected