[Python-checkins] commit of r41659 - in python/trunk: Doc/lib/lib.tex Doc/lib/xmletree.tex

fredrik.lundh python-checkins at python.org
Mon Dec 12 22:59:44 CET 2005


Author: fredrik.lundh
Date: Mon Dec 12 22:59:44 2005
New Revision: 41659

Added:
   python/trunk/Doc/lib/xmletree.tex
Modified:
   python/trunk/   (props changed)
   python/trunk/Doc/lib/lib.tex
Log:
 r1076 at spiff:  Fredrik | 2005-12-12 22:32:28 +0100
 added xml.etree documentation stub
 


Modified: python/trunk/Doc/lib/lib.tex
==============================================================================
--- python/trunk/Doc/lib/lib.tex	(original)
+++ python/trunk/Doc/lib/lib.tex	Mon Dec 12 22:59:44 2005
@@ -286,6 +286,7 @@
 \input{xmlsaxhandler}
 \input{xmlsaxutils}
 \input{xmlsaxreader}
+\input{xmletree}
 % \input{libxmllib}
 
 \input{libmm}                   % Multimedia Services

Added: python/trunk/Doc/lib/xmletree.tex
==============================================================================
--- (empty file)
+++ python/trunk/Doc/lib/xmletree.tex	Mon Dec 12 22:59:44 2005
@@ -0,0 +1,27 @@
+\section{\module{xml.etree} ---
+         The ElementTree API for XML}
+
+\declaremodule{standard}{xml.etree}
+\modulesynopsis{Package containing common ElementTree modules.}
+\moduleauthor{Fredrik Lundh}{fredrik at pythonware.com}
+
+\versionadded{2.5}
+
+The ElementTree package is a simple, efficient, and quite popular
+library for XML manipulation in Python.
+
+The \module{xml.etree} package contains the most common components
+from the ElementTree API library.
+In the current release, this package contains the \module{ElementTree},
+\module{ElementPath}, and \module{ElementInclude} modules from the full
+ElementTree distribution.
+
+% XXX To be continued!
+
+\begin{seealso}
+\seetitle[http://effbot.org/tag/elementtree]
+        {ElementTree Overview}
+        {The home page for \module{ElementTree}.  This includes links
+         to additional documentation, alternative implementations, and
+         other add-ons.}
+\end{seealso}


More information about the Python-checkins mailing list