diff options
author | Fred Drake <fdrake@acm.org> | 2001-02-03 01:20:01 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-02-03 01:20:01 (GMT) |
commit | 40e43bfaf751da939f3702d97f6a68d89ffc0396 (patch) | |
tree | bae861abf73de46ec72a7d3e6d7d2e3f74a636de /Doc/lib/xmldom.tex | |
parent | f891404e1a17419ce627038c42b5b6a4860ae64f (diff) | |
download | cpython-40e43bfaf751da939f3702d97f6a68d89ffc0396.zip cpython-40e43bfaf751da939f3702d97f6a68d89ffc0396.tar.gz cpython-40e43bfaf751da939f3702d97f6a68d89ffc0396.tar.bz2 |
Document Node.isSameNode().
Diffstat (limited to 'Doc/lib/xmldom.tex')
-rw-r--r-- | Doc/lib/xmldom.tex | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/lib/xmldom.tex b/Doc/lib/xmldom.tex index 4a8c7b7..74c92fb 100644 --- a/Doc/lib/xmldom.tex +++ b/Doc/lib/xmldom.tex @@ -237,6 +237,13 @@ Returns true if the node has any attributes. Returns true if the node has any child nodes. \end{methoddesc} +\begin{methoddesc}[Node]{isSameNode}{other} +Returns true if \var{other} refers to the same node as this node. +This is especially useful for DOM implementations which use any sort +of proxy architecture (because more than one object can refer to the +same node). +\end{methoddesc} + \begin{methoddesc}[Node]{appendChild}{newChild} Add a new child node to this node at the end of the list of children, returning \var{newChild}. |