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

georg.brandl python-checkins at python.org
Sat Apr 12 20:36:10 CEST 2008


Author: georg.brandl
Date: Sat Apr 12 20:36:09 2008
New Revision: 62295

Log:
#2615: small consistency update by Jeroen Ruigrok van der Werven.


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 Apr 12 20:36:09 2008
@@ -128,7 +128,7 @@
    to discard children of that node.
 
 
-.. method:: Node.writexml(writer[,indent=""[,addindent=""[,newl=""]]])
+.. method:: Node.writexml(writer[, indent=""[, addindent=""[, newl=""[, encoding=""]]]])
 
    Write XML to the writer object.  The writer should have a :meth:`write` method
    which matches that of the file object interface.  The *indent* parameter is the
@@ -160,10 +160,10 @@
    encoding argument should be specified as "utf-8".
 
    .. versionchanged:: 2.3
-      the *encoding* argument was introduced.
+      the *encoding* argument was introduced; see :meth:`writexml`.
 
 
-.. method:: Node.toprettyxml([indent[, newl]])
+.. method:: Node.toprettyxml([indent=""[, newl=""[, encoding=""]]])
 
    Return a pretty-printed version of the document. *indent* specifies the
    indentation string and defaults to a tabulator; *newl* specifies the string
@@ -172,7 +172,7 @@
    .. versionadded:: 2.1
 
    .. versionchanged:: 2.3
-      the encoding argument; see :meth:`toxml`.
+      the encoding argument was introduced; see :meth:`writexml`.
 
 The following standard DOM methods have special considerations with
 :mod:`xml.dom.minidom`:


More information about the Python-checkins mailing list