#6489: fix an ambiguity in getiterator() documentation.

This commit is contained in:
Georg Brandl 2009-07-18 09:43:40 +00:00
parent a1a4bdb30c
commit 3bb474714b
1 changed files with 3 additions and 3 deletions

View File

@ -262,9 +262,9 @@ The following methods work on the element's children (subelements).
.. method:: Element.getiterator([tag=None])
Creates a tree iterator with the current element as the root. The iterator
iterates over this element and all elements below it that match the given tag.
If tag is ``None`` or ``'*'`` then all elements are iterated over. Returns an
iterable that provides element objects in document (depth first) order.
iterates over this element and all elements below it, in document (depth first)
order. If *tag* is not ``None`` or ``'*'``, only elements whose tag equals
*tag* are returned from the iterator.
.. method:: Element.insert(index, element)