(self)
| 157 | self.lastEvent = self.lastEvent[1] |
| 158 | |
| 159 | def startDocument(self): |
| 160 | if self.documentFactory is None: |
| 161 | import xml.dom.minidom |
| 162 | self.documentFactory = xml.dom.minidom.Document.implementation |
| 163 | |
| 164 | def buildDocument(self, uri, tagname): |
| 165 | # Can't do that in startDocument, since we need the tagname |
no outgoing calls