summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDon Patterson <37046246+don-patterson@users.noreply.github.com>2023-10-23 15:54:29 (GMT)
committerGitHub <noreply@github.com>2023-10-23 15:54:29 (GMT)
commit94c2ddfcd78e62090153837a72f88c083e2be01e (patch)
tree1946119e3ffc325c75b2ab08b6323c900d784c51 /Doc
parent46cea34d54aa662462636382a4627a6eef2e05dc (diff)
downloadcpython-94c2ddfcd78e62090153837a72f88c083e2be01e.zip
cpython-94c2ddfcd78e62090153837a72f88c083e2be01e.tar.gz
cpython-94c2ddfcd78e62090153837a72f88c083e2be01e.tar.bz2
typo: missing line of output in pull parser example (#111068)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/xml.etree.elementtree.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst
index 54c9300..c9b3263 100644
--- a/Doc/library/xml.etree.elementtree.rst
+++ b/Doc/library/xml.etree.elementtree.rst
@@ -154,6 +154,7 @@ elements, call :meth:`XMLPullParser.read_events`. Here is an example::
... print(elem.tag, 'text=', elem.text)
...
end
+ mytag text= sometext more text
The obvious use case is applications that operate in a non-blocking fashion
where the XML data is being received from a socket or read incrementally from