diff options
author | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
commit | 55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch) | |
tree | a0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/xml.dom.rst | |
parent | 1617457cff847fed9fadb01f1acf6ba8bb621726 (diff) | |
download | cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2 |
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/xml.dom.rst')
-rw-r--r-- | Doc/library/xml.dom.rst | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Doc/library/xml.dom.rst b/Doc/library/xml.dom.rst index 76f5cc1..e13999c 100644 --- a/Doc/library/xml.dom.rst +++ b/Doc/library/xml.dom.rst @@ -8,8 +8,6 @@ .. sectionauthor:: Martin v. Löwis <martin@v.loewis.de> -.. versionadded:: 2.0 - The Document Object Model, or "DOM," is a cross-language API from the World Wide Web Consortium (W3C) for accessing and modifying XML documents. A DOM implementation presents an XML document as a tree structure, or allows client @@ -122,16 +120,12 @@ Some convenience constants are also provided: DOM. This is typically found as the :attr:`namespaceURI` of a node, or used as the *namespaceURI* parameter to a namespaces-specific method. - .. versionadded:: 2.2 - .. data:: XML_NAMESPACE The namespace URI associated with the reserved prefix ``xml``, as defined by `Namespaces in XML <http://www.w3.org/TR/REC-xml-names/>`_ (section 4). - .. versionadded:: 2.2 - .. data:: XMLNS_NAMESPACE @@ -139,15 +133,12 @@ Some convenience constants are also provided: Model (DOM) Level 2 Core Specification <http://www.w3.org/TR/DOM-Level-2-Core/core.html>`_ (section 1.1.8). - .. versionadded:: 2.2 - .. data:: XHTML_NAMESPACE The URI of the XHTML namespace as defined by `XHTML 1.0: The Extensible HyperText Markup Language <http://www.w3.org/TR/xhtml1/>`_ (section 3.1.1). - .. versionadded:: 2.2 In addition, :mod:`xml.dom` contains a base :class:`Node` class and the DOM exception classes. The :class:`Node` class provided by this module does not @@ -404,8 +395,6 @@ All of the components of an XML document are subclasses of :class:`Node`. :class:`Text` instances. This simplifies processing text from a DOM tree for many applications. - .. versionadded:: 2.1 - .. method:: Node.cloneNode(deep) @@ -813,8 +802,6 @@ Represents a processing instruction in the XML document; this inherits from the Exceptions ^^^^^^^^^^ -.. versionadded:: 2.1 - The DOM Level 2 recommendation defines a single exception, :exc:`DOMException`, and a number of constants that allow applications to determine what sort of error occurred. :exc:`DOMException` instances carry a :attr:`code` attribute |