[Python-checkins] CVS: python/dist/src/Doc/lib xmldom.tex,1.8,1.9

Fred L. Drake fdrake@users.sourceforge.net
Fri, 02 Feb 2001 17:20:03 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv1306/lib

Modified Files:
	xmldom.tex 
Log Message:

Document Node.isSameNode().


Index: xmldom.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/xmldom.tex,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** xmldom.tex	2001/01/26 20:51:32	1.8
--- xmldom.tex	2001/02/03 01:20:01	1.9
***************
*** 238,241 ****
--- 238,248 ----
  \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,