(self, data)
| 289 | _append_child(self.curNode, node) |
| 290 | |
| 291 | def character_data_handler(self, data): |
| 292 | childNodes = self.curNode.childNodes |
| 293 | if childNodes and childNodes[-1].nodeType == TEXT_NODE: |
| 294 | node = childNodes[-1] |
| 295 | node.data = node.data + data |
| 296 | return |
| 297 | node = minidom.Text() |
| 298 | node.data = node.data + data |
| 299 | node.ownerDocument = self.document |
| 300 | _append_child(self.curNode, node) |
| 301 | |
| 302 | def entity_decl_handler(self, entityName, is_parameter_entity, value, |
| 303 | base, systemId, publicId, notationName): |
nothing calls this directly
no test coverage detected