mirror of https://github.com/python/cpython.git
#6489: fix an ambiguity in getiterator() documentation.
This commit is contained in:
parent
a1a4bdb30c
commit
3bb474714b
|
@ -262,9 +262,9 @@ The following methods work on the element's children (subelements).
|
||||||
.. method:: Element.getiterator([tag=None])
|
.. method:: Element.getiterator([tag=None])
|
||||||
|
|
||||||
Creates a tree iterator with the current element as the root. The iterator
|
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.
|
iterates over this element and all elements below it, in document (depth first)
|
||||||
If tag is ``None`` or ``'*'`` then all elements are iterated over. Returns an
|
order. If *tag* is not ``None`` or ``'*'``, only elements whose tag equals
|
||||||
iterable that provides element objects in document (depth first) order.
|
*tag* are returned from the iterator.
|
||||||
|
|
||||||
|
|
||||||
.. method:: Element.insert(index, element)
|
.. method:: Element.insert(index, element)
|
||||||
|
|
Loading…
Reference in New Issue