Kaydet (Commit) c8dfd588 authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Bug #1494: Document that appendChild removes first.

üst 58a6f446
...@@ -372,8 +372,9 @@ All of the components of an XML document are subclasses of :class:`Node`. ...@@ -372,8 +372,9 @@ All of the components of an XML document are subclasses of :class:`Node`.
.. method:: Node.appendChild(newChild) .. method:: Node.appendChild(newChild)
Add a new child node to this node at the end of the list of children, returning Add a new child node to this node at the end of the list of
*newChild*. children, returning *newChild*. If the node was already in
in the tree, it is removed first.
.. method:: Node.insertBefore(newChild, refChild) .. method:: Node.insertBefore(newChild, refChild)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment