Lines Matching refs:minidom
1 :mod:`xml.dom.minidom` --- Minimal DOM implementation
4 .. module:: xml.dom.minidom
11 **Source code:** :source:`Lib/xml/dom/minidom.py`
15 :mod:`xml.dom.minidom` is a minimal implementation of the Document Object
24 The :mod:`xml.dom.minidom` module is not secure against
30 :mod:`xml.dom.minidom`, this is done through the parse functions::
32 from xml.dom.minidom import parse, parseString
74 :mod:`xml.dom.minidom` module. Once you have a :class:`Document`, you
77 from xml.dom.minidom import getDOMImplementation
97 objects. :meth:`unlink` is an :mod:`xml.dom.minidom`\ -specific
105 The W3C recommendation for the DOM supported by :mod:`xml.dom.minidom`.
115 :mod:`xml.dom.minidom`.
131 with xml.dom.minidom.parse(datasource) as dom:
177 .. literalinclude:: ../includes/minidom-example.py
182 minidom and the DOM standard
185 The :mod:`xml.dom.minidom` module is essentially a DOM 1.0-compatible DOM with
208 * The type ``DOMString`` maps to Python strings. :mod:`xml.dom.minidom` supports
214 ``xml.dom.minidom.Node.PROCESSING_INSTRUCTION_NODE``); they must not be changed.
216 * ``DOMException`` is currently not supported in :mod:`xml.dom.minidom`.
217 Instead, :mod:`xml.dom.minidom` uses standard Python exceptions such as
226 The following interfaces have no implementation in :mod:`xml.dom.minidom`: