summaryrefslogtreecommitdiffstats
path: root/Doc/library/xml.dom.minidom.rst
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2011-05-09 06:05:43 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2011-05-09 06:05:43 (GMT)
commit2f48d892d4036b500f5b79d152b3166b4d205dc9 (patch)
tree84b7b98bf34da03b275e04726884c27ec33c917b /Doc/library/xml.dom.minidom.rst
parent8269a44d5095cbd0c351aedc41272e9a6d91c269 (diff)
downloadcpython-2f48d892d4036b500f5b79d152b3166b4d205dc9.zip
cpython-2f48d892d4036b500f5b79d152b3166b4d205dc9.tar.gz
cpython-2f48d892d4036b500f5b79d152b3166b4d205dc9.tar.bz2
Stop trying to use _xmlplus in the xml module. Closes #11164.
Patch by Arfrever Frehtes Taifersar Arahesis.
Diffstat (limited to 'Doc/library/xml.dom.minidom.rst')
-rw-r--r--Doc/library/xml.dom.minidom.rst8
1 files changed, 2 insertions, 6 deletions
diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst
index 8364f35..12360c0 100644
--- a/Doc/library/xml.dom.minidom.rst
+++ b/Doc/library/xml.dom.minidom.rst
@@ -57,12 +57,8 @@ functions do not provide a parser implementation themselves.
You can also create a :class:`Document` by calling a method on a "DOM
Implementation" object. You can get this object either by calling the
:func:`getDOMImplementation` function in the :mod:`xml.dom` package or the
-:mod:`xml.dom.minidom` module. Using the implementation from the
-:mod:`xml.dom.minidom` module will always return a :class:`Document` instance
-from the minidom implementation, while the version from :mod:`xml.dom` may
-provide an alternate implementation (this is likely if you have the `PyXML
-package <http://pyxml.sourceforge.net/>`_ installed). Once you have a
-:class:`Document`, you can add child nodes to it to populate the DOM::
+:mod:`xml.dom.minidom` module. Once you have a :class:`Document`, you
+can add child nodes to it to populate the DOM::
from xml.dom.minidom import getDOMImplementation