Added a few docstrings
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 @@
 """
 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 @@
     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 )
+