Sets the value of a SAX2 property.
(self, name, value)
| 85 | raise SAXNotRecognizedException("Property '%s' not recognized" % name) |
| 86 | |
| 87 | def setProperty(self, name, value): |
| 88 | "Sets the value of a SAX2 property." |
| 89 | raise SAXNotRecognizedException("Property '%s' not recognized" % name) |
| 90 | |
| 91 | class IncrementalParser(XMLReader): |
| 92 | """This interface adds three extra methods to the XMLReader |