(self, target, data)
| 295 | parentNode.appendChild(curNode) |
| 296 | |
| 297 | def processingInstruction(self, target, data): |
| 298 | PullDOM.processingInstruction(self, target, data) |
| 299 | node = self.lastEvent[0][1] |
| 300 | parentNode = self.elementStack[-1] |
| 301 | parentNode.appendChild(node) |
| 302 | |
| 303 | def ignorableWhitespace(self, chars): |
| 304 | PullDOM.ignorableWhitespace(self, chars) |
nothing calls this directly
no test coverage detected