The XML document load context. @ivar url: The URL. @type url: str @ivar document: Either the XML text or the B{parsed} document root. @type document: (str|L{sax.element.Element})
| 41 | |
| 42 | |
| 43 | class DocumentContext(Context): |
| 44 | """ |
| 45 | The XML document load context. |
| 46 | @ivar url: The URL. |
| 47 | @type url: str |
| 48 | @ivar document: Either the XML text or the B{parsed} document root. |
| 49 | @type document: (str|L{sax.element.Element}) |
| 50 | """ |
| 51 | pass |
| 52 | |
| 53 | |
| 54 | class MessageContext(Context): |