Merge 3.2

This commit is contained in:
Eli Bendersky 2012-03-02 07:41:23 +02:00
commit 92818d5383
1 changed files with 8 additions and 0 deletions

View File

@ -15,6 +15,14 @@
Model interface. It is intended to be simpler than the full DOM and also Model interface. It is intended to be simpler than the full DOM and also
significantly smaller. significantly smaller.
.. note::
The :mod:`xml.dom.minidom` module provides an implementation of the W3C-DOM,
with an API similar to that in other programming languages. Users who are
unfamiliar with the W3C-DOM interface or who would like to write less code
for processing XML files should consider using the
:mod:`xml.etree.ElementTree` module instead.
DOM applications typically start by parsing some XML into a DOM. With DOM applications typically start by parsing some XML into a DOM. With
:mod:`xml.dom.minidom`, this is done through the parse functions:: :mod:`xml.dom.minidom`, this is done through the parse functions::