[Python-checkins] r72676 - python/trunk/Doc/library/xml.dom.minidom.rst

georg.brandl python-checkins at python.org
Sat May 16 13:14:52 CEST 2009


Author: georg.brandl
Date: Sat May 16 13:14:46 2009
New Revision: 72676

Log:
#6025: fix signature of parse().

Modified:
   python/trunk/Doc/library/xml.dom.minidom.rst

Modified: python/trunk/Doc/library/xml.dom.minidom.rst
==============================================================================
--- python/trunk/Doc/library/xml.dom.minidom.rst	(original)
+++ python/trunk/Doc/library/xml.dom.minidom.rst	Sat May 16 13:14:46 2009
@@ -30,7 +30,7 @@
 The :func:`parse` function can take either a filename or an open file object.
 
 
-.. function:: parse(filename_or_file, parser)
+.. function:: parse(filename_or_file[, parser[, bufsize]])
 
    Return a :class:`Document` from the given input. *filename_or_file* may be
    either a file name, or a file-like object. *parser*, if given, must be a SAX2


More information about the Python-checkins mailing list