summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/xml/dom/minidom.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py
index 981e511..3f5668e 100644
--- a/Lib/xml/dom/minidom.py
+++ b/Lib/xml/dom/minidom.py
@@ -6,6 +6,10 @@ import types
"""
minidom.py -- a lightweight DOM implementation based on SAX.
+parse( "foo.xml" )
+
+parseString( "<foo><bar/></foo>" )
+
Todo:
=====
* convenience methods for getting elements and text.
@@ -440,7 +444,10 @@ def _doparse( func, args, kwargs ):
return rootNode
def parse( *args, **kwargs ):
+ "Parse a file into a DOM by filename or file object"
return _doparse( pulldom.parse, args, kwargs )
def parseString( *args, **kwargs ):
+ "Parse a file into a DOM from a string"
return _doparse( pulldom.parseString, args, kwargs )
+