From: Don Patterson <37046246+don-patterson@users.noreply.github.com> Date: Mon, 23 Oct 2023 15:54:29 +0000 (-0300) Subject: typo: missing line of output in pull parser example (#111068) X-Git-Tag: v3.13.0a2~356 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=94c2ddfcd78e62090153837a72f88c083e2be01e;p=thirdparty%2FPython%2Fcpython.git typo: missing line of output in pull parser example (#111068) --- diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst index 54c93008503c..c9b32632c6b3 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