Lines Matching +full:security +full:- +full:events
1 :mod:`xml.dom.pulldom` --- Support for building partial DOM trees
5 :synopsis: Support for building partial DOM trees from SAX events.
11 --------------
14 asked to produce DOM-accessible fragments of the document where necessary. The
15 basic concept involves pulling "events" from a stream of incoming XML and
16 processing them. In contrast to SAX which also employs an event-driven
18 responsible for explicitly pulling events from the stream, looping over those
19 events until either processing is finished or an error condition occurs.
26 unauthenticated data see :ref:`xml-vulnerabilities`.
31 increase security by default. To enable processing of external entities,
68 Since the document is treated as a "flat" stream of events, the document "tree"
73 context-related state (i.e. remembering where one is in the document at any
75 and switch to DOM-related processing.
91 either a file name, or a file-like object. *parser*, if given, must be an
110 .. _domeventstream-objects:
113 ----------------------