• Home
  • Raw
  • Download

Lines Matching refs:minidom

1 :mod:`xml.dom.minidom` --- Minimal DOM implementation
4 .. module:: xml.dom.minidom
13 **Source code:** :source:`Lib/xml/dom/minidom.py`
17 :mod:`xml.dom.minidom` is a minimal implementation of the Document Object
26 The :mod:`xml.dom.minidom` module is not secure against
32 :mod:`xml.dom.minidom`, this is done through the parse functions::
34 from xml.dom.minidom import parse, parseString
76 :mod:`xml.dom.minidom` module. Using the implementation from the
77 :mod:`xml.dom.minidom` module will always return a :class:`Document` instance
78 from the minidom implementation, while the version from :mod:`xml.dom` may
83 from xml.dom.minidom import getDOMImplementation
103 objects. :meth:`unlink` is an :mod:`xml.dom.minidom`\ -specific
111 The W3C recommendation for the DOM supported by :mod:`xml.dom.minidom`.
121 :mod:`xml.dom.minidom`.
184 :mod:`xml.dom.minidom`:
189 Although this method was present in the version of :mod:`xml.dom.minidom`
202 .. literalinclude:: ../includes/minidom-example.py
207 minidom and the DOM standard
210 The :mod:`xml.dom.minidom` module is essentially a DOM 1.0-compatible DOM with
233 * The type ``DOMString`` maps to Python strings. :mod:`xml.dom.minidom` supports
239 ``xml.dom.minidom.Node.PROCESSING_INSTRUCTION_NODE``); they must not be changed.
241 * ``DOMException`` is currently not supported in :mod:`xml.dom.minidom`.
242 Instead, :mod:`xml.dom.minidom` uses standard Python exceptions such as
251 The following interfaces have no implementation in :mod:`xml.dom.minidom`: