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

martin.v.loewis python-checkins at python.org
Sat Nov 24 19:33:41 CET 2007


Author: martin.v.loewis
Date: Sat Nov 24 19:33:40 2007
New Revision: 59176

Modified:
   python/trunk/Doc/library/xml.dom.rst
Log:
Bug #1494: Document that appendChild removes first.


Modified: python/trunk/Doc/library/xml.dom.rst
==============================================================================
--- python/trunk/Doc/library/xml.dom.rst	(original)
+++ python/trunk/Doc/library/xml.dom.rst	Sat Nov 24 19:33:40 2007
@@ -372,8 +372,9 @@
 
 .. method:: Node.appendChild(newChild)
 
-   Add a new child node to this node at the end of the list of children, returning
-   *newChild*.
+   Add a new child node to this node at the end of the list of
+   children, returning *newChild*. If the node was already in
+   in the tree, it is removed first.
 
 
 .. method:: Node.insertBefore(newChild, refChild)


More information about the Python-checkins mailing list