diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-22 20:47:57 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-22 20:47:57 (GMT) |
commit | da4b5b82a3b2ec27f9112cc0338a3b20f502b892 (patch) | |
tree | 8b3d92c55ba0efb044a1c723932ddb3fdcc71bb7 /Lib/xml/dom | |
parent | 4b88d6c6642450240a9dc22e6efbdc69baf890dd (diff) | |
download | cpython-da4b5b82a3b2ec27f9112cc0338a3b20f502b892.zip cpython-da4b5b82a3b2ec27f9112cc0338a3b20f502b892.tar.gz cpython-da4b5b82a3b2ec27f9112cc0338a3b20f502b892.tar.bz2 |
#11379: rephrase minidom documentation to use the term "minimal" instead of "lightweight". Patch by Éric Araujo.
Diffstat (limited to 'Lib/xml/dom')
-rw-r--r-- | Lib/xml/dom/minidom.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index f23ad05..1870ebd 100644 --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -1,5 +1,6 @@ -"""\ -minidom.py -- a lightweight DOM implementation. +"""Simple implementation of the Level 1 DOM. + +Namespaces and other minor Level 2 features are also supported. parse("foo.xml") |