diff options
author | Eli Bendersky <eliben@gmail.com> | 2014-04-03 13:14:38 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2014-04-03 13:14:38 (GMT) |
commit | 0bd22d427709c5bc2e60e176e52fb00d76d6759f (patch) | |
tree | abd32d190b24ee76c819d79653fd6258eec341bb /Doc/library/xml.etree.elementtree.rst | |
parent | e331121e1f6e4f754f2d25c32e1b738df2f4404a (diff) | |
download | cpython-0bd22d427709c5bc2e60e176e52fb00d76d6759f.zip cpython-0bd22d427709c5bc2e60e176e52fb00d76d6759f.tar.gz cpython-0bd22d427709c5bc2e60e176e52fb00d76d6759f.tar.bz2 |
Issue #20375: Clarify ET's parsing of comments and processing instructions.
Based on patch by Nikolaus Rath.
Diffstat (limited to 'Doc/library/xml.etree.elementtree.rst')
-rw-r--r-- | Doc/library/xml.etree.elementtree.rst | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst index 0617371..fc0b79e 100644 --- a/Doc/library/xml.etree.elementtree.rst +++ b/Doc/library/xml.etree.elementtree.rst @@ -106,6 +106,19 @@ Children are nested, and we can access specific child nodes by index:: '2008' +.. note:: + + Not all elements of the XML input will end up as elements of the + parsed tree. Currently, this module skips over any XML comments, + processing instructions, and document type declarations in the + input. Nevertheless, trees built using this module's API rather + than parsing from XML text can have comments and processing + instructions in them; they will be included when generating XML + output. A document type declaration may be accessed by passing a + custom :class:`TreeBuilder` instance to the :class:`XMLParser` + constructor. + + .. _elementtree-pull-parsing: Pull API for non-blocking parsing @@ -381,6 +394,10 @@ Functions string containing the comment string. Returns an element instance representing a comment. + Note that :class:`XMLParser` skips over comments in the input + instead of creating comment objects for them. An :class:`ElementTree` will + only contain comment nodes if they have been inserted into to + the tree using one of the :class:`Element` methods. .. function:: dump(elem) @@ -461,6 +478,11 @@ Functions containing the PI target. *text* is a string containing the PI contents, if given. Returns an element instance, representing a processing instruction. + Note that :class:`XMLParser` skips over processing instructions + in the input instead of creating comment objects for them. An + :class:`ElementTree` will only contain processing instruction nodes if + they have been inserted into to the tree using one of the + :class:`Element` methods. .. function:: register_namespace(prefix, uri) |