(self, chars)
| 152 | self.lastEvent = self.lastEvent[1] |
| 153 | |
| 154 | def characters(self, chars): |
| 155 | node = self.document.createTextNode(chars) |
| 156 | self.lastEvent[1] = [(CHARACTERS, node), None] |
| 157 | self.lastEvent = self.lastEvent[1] |
| 158 | |
| 159 | def startDocument(self): |
| 160 | if self.documentFactory is None: |
no test coverage detected