diff options
author | Georg Brandl <georg@python.org> | 2009-05-16 11:14:46 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-16 11:14:46 (GMT) |
commit | 29d3a04618bea5afb216167a49247fe919dd0b00 (patch) | |
tree | 496059fef53c90f8af5dbf2c300a5269c879b17e /Doc/library | |
parent | 8dc3b445ece0bd9a9cd7c0abad2e62c02074e512 (diff) | |
download | cpython-29d3a04618bea5afb216167a49247fe919dd0b00.zip cpython-29d3a04618bea5afb216167a49247fe919dd0b00.tar.gz cpython-29d3a04618bea5afb216167a49247fe919dd0b00.tar.bz2 |
#6025: fix signature of parse().
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/xml.dom.minidom.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/xml.dom.minidom.rst b/Doc/library/xml.dom.minidom.rst index b127f04..cb49c02 100644 --- a/Doc/library/xml.dom.minidom.rst +++ b/Doc/library/xml.dom.minidom.rst @@ -30,7 +30,7 @@ DOM applications typically start by parsing some XML into a DOM. With 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 |