summaryrefslogtreecommitdiffstats
path: root/Doc/lib/xmldom.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-02-14 20:39:15 (GMT)
committerFred Drake <fdrake@acm.org>2001-02-14 20:39:15 (GMT)
commit15862f50e5f43950bd7c5b8cc643b2343efae83e (patch)
tree6f03b7f58856025382dcee684d530617bfcfde81 /Doc/lib/xmldom.tex
parent1d8ad2b1de360a6989fa02f170cd789969e3ac5d (diff)
downloadcpython-15862f50e5f43950bd7c5b8cc643b2343efae83e.zip
cpython-15862f50e5f43950bd7c5b8cc643b2343efae83e.tar.gz
cpython-15862f50e5f43950bd7c5b8cc643b2343efae83e.tar.bz2
Add a note to Node.isSameNode() that it is based on the DOM Level 3 working
draft. I'm not sure that's important, but Uche thinks it is.
Diffstat (limited to 'Doc/lib/xmldom.tex')
-rw-r--r--Doc/lib/xmldom.tex6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/lib/xmldom.tex b/Doc/lib/xmldom.tex
index 74c92fb..5e752a0 100644
--- a/Doc/lib/xmldom.tex
+++ b/Doc/lib/xmldom.tex
@@ -242,6 +242,12 @@ 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).
+
+\strong{Note:} This is based on a proposed DOM Level 3 API which is
+still in the ``working draft'' stage, but this particular interface
+appears uncontroversial. Changes from the W3C will not necessarily
+affect this method in the Python DOM interface (though any new W3C
+API for this would also be supported).
\end{methoddesc}
\begin{methoddesc}[Node]{appendChild}{newChild}