diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2005-12-12 21:59:44 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2005-12-12 21:59:44 (GMT) |
commit | 245c619e86a47fd1f179c61c0899135ccf29cf78 (patch) | |
tree | d74d231654c4e5fc15f506db09075bb5fa1be9f5 /Doc | |
parent | 0e664e15efb87b437402a7e6524d635033b7a91e (diff) | |
download | cpython-245c619e86a47fd1f179c61c0899135ccf29cf78.zip cpython-245c619e86a47fd1f179c61c0899135ccf29cf78.tar.gz cpython-245c619e86a47fd1f179c61c0899135ccf29cf78.tar.bz2 |
r1076@spiff: Fredrik | 2005-12-12 22:32:28 +0100
added xml.etree documentation stub
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/lib.tex | 1 | ||||
-rw-r--r-- | Doc/lib/xmletree.tex | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/Doc/lib/lib.tex b/Doc/lib/lib.tex index bb995d8..1401c40 100644 --- a/Doc/lib/lib.tex +++ b/Doc/lib/lib.tex @@ -286,6 +286,7 @@ and how to embed it in other applications. \input{xmlsaxhandler} \input{xmlsaxutils} \input{xmlsaxreader} +\input{xmletree} % \input{libxmllib} \input{libmm} % Multimedia Services diff --git a/Doc/lib/xmletree.tex b/Doc/lib/xmletree.tex new file mode 100644 index 0000000..789062d --- /dev/null +++ b/Doc/lib/xmletree.tex @@ -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@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}
|