diff options
author | Eli Bendersky <eliben@gmail.com> | 2013-08-31 14:37:23 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2013-08-31 14:37:23 (GMT) |
commit | 2c68e300e54438d0c91ffa9cd5c78085d5596236 (patch) | |
tree | 07cd5f2cb34ebe515a2993007c1544d4236370d4 /Doc/library/xml.etree.elementtree.rst | |
parent | 4879a963d4a2020f4c26f2583f3ac35ec8d6edfe (diff) | |
download | cpython-2c68e300e54438d0c91ffa9cd5c78085d5596236.zip cpython-2c68e300e54438d0c91ffa9cd5c78085d5596236.tar.gz cpython-2c68e300e54438d0c91ffa9cd5c78085d5596236.tar.bz2 |
Fix XMLPullParser documentation to say "non-blocking" instead of "asynchronous".
The latter is more ambiguous.
Related to issue #17741
Diffstat (limited to 'Doc/library/xml.etree.elementtree.rst')
-rw-r--r-- | Doc/library/xml.etree.elementtree.rst | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst index 9936d03..97550ed 100644 --- a/Doc/library/xml.etree.elementtree.rst +++ b/Doc/library/xml.etree.elementtree.rst @@ -105,7 +105,7 @@ Children are nested, and we can access specific child nodes by index:: >>> root[0][1].text '2008' -Pull API for asynchronous parsing +Pull API for non-blocking parsing ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Most parsing functions provided by this module require to read the whole @@ -121,18 +121,18 @@ require a blocking read to obtain the XML data, and is instead fed with data incrementally with :meth:`XMLPullParser.feed` calls. To get the parsed XML elements, call :meth:`XMLPullParser.read_events`. Here's an example:: - >>> asyncparser = ET.XMLPullParser(['start', 'end']) - >>> asyncparser.feed('<mytag>sometext') - >>> list(asyncparser.read_events()) + >>> parser = ET.XMLPullParser(['start', 'end']) + >>> parser.feed('<mytag>sometext') + >>> list(parser.read_events()) [('start', <Element 'mytag' at 0x7fa66db2be58>)] - >>> asyncparser.feed(' more text</mytag>') - >>> for event, elem in asyncparser.read_events(): + >>> parser.feed(' more text</mytag>') + >>> for event, elem in parser.read_events(): ... print(event) ... print(elem.tag, 'text=', elem.text) ... end -The obvious use case is applications that operate in an asynchronous fashion +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 some storage device. In such cases, blocking reads are unacceptable. @@ -427,8 +427,8 @@ Functions Note that while :func:`iterparse` builds the tree incrementally, it issues blocking reads on *source* (or the file it names). As such, it's unsuitable - for asynchronous applications where blocking reads can't be made. For fully - asynchronous parsing, see :class:`XMLPullParser`. + for applications where blocking reads can't be made. For fully non-blocking + parsing, see :class:`XMLPullParser`. .. note:: @@ -1016,14 +1016,14 @@ XMLPullParser Objects .. class:: XMLPullParser(events=None) - A pull parser suitable for nonblocking (asynchronous) applications. Its - input-side API is similar to that of :class:`XMLParser`, but instead of - pushing calls to a callback target, :class:`XMLPullParser` collects an - internal list of parsing events and lets the user read from it. *events* is a - sequence of events to report back. The supported events are the strings - ``"start"``, ``"end"``, ``"start-ns"`` and ``"end-ns"`` (the "ns" events are - used to get detailed namespace information). If *events* is omitted, only - ``"end"`` events are reported. + A pull parser suitable for non-blocking applications. Its input-side API is + similar to that of :class:`XMLParser`, but instead of pushing calls to a + callback target, :class:`XMLPullParser` collects an internal list of parsing + events and lets the user read from it. *events* is a sequence of events to + report back. The supported events are the strings ``"start"``, ``"end"``, + ``"start-ns"`` and ``"end-ns"`` (the "ns" events are used to get detailed + namespace information). If *events* is omitted, only ``"end"`` events are + reported. .. method:: feed(data) |