mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
whatsnew: XMLPullParser, plus some doc updates.
I was confused by the text saying that read_events "iterated", since it actually returns an iterator (that's what a generator does) that the caller must then iterate. So I tidied up the language. I'm not sure what the sentence "Events provided in a previous call to read_events() will not be yielded again." is trying to convey, so I didn't try to fix that. Also fixed a couple more news items.
This commit is contained in:
parent
aed5b22ead
commit
410d320703
4 changed files with 24 additions and 18 deletions
|
|
@ -1251,7 +1251,7 @@ class XMLPullParser:
|
|||
self._close_and_return_root()
|
||||
|
||||
def read_events(self):
|
||||
"""Iterate over currently available (event, elem) pairs.
|
||||
"""Return an iterator over currently available (event, elem) pairs.
|
||||
|
||||
Events are consumed from the internal event queue as they are
|
||||
retrieved from the iterator.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue