diff options
author | Eli Bendersky <eliben@gmail.com> | 2012-03-02 05:41:23 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2012-03-02 05:41:23 (GMT) |
commit | 92818d5383087d238f24b0a93d31a41bf6a75735 (patch) | |
tree | 2221f053fc83c59e2580dc6aa5dbd0f39f7aaf37 | |
parent | 2f24d98df08fbed8e7c82a3de1843ef27b779739 (diff) | |
parent | 20293441da3ed1ee8e90de9747594090e27dca0e (diff) | |
download | cpython-92818d5383087d238f24b0a93d31a41bf6a75735.zip cpython-92818d5383087d238f24b0a93d31a41bf6a75735.tar.gz cpython-92818d5383087d238f24b0a93d31a41bf6a75735.tar.bz2 |
Merge 3.2
-rw-r--r-- | Doc/library/xml.dom.minidom.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst index ab5476d..ae286b0 100644 --- a/Doc/library/xml.dom.minidom.rst +++ b/Doc/library/xml.dom.minidom.rst @@ -15,6 +15,14 @@ Model interface. It is intended to be simpler than the full DOM and also 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 :mod:`xml.dom.minidom`, this is done through the parse functions:: |