@@ -35,7 +35,7 @@ See http://effbot.org/zone/element-index.htm for tutorials and links to other
3535docs. Fredrik Lundh's page is also the location of the development version of
3636the xml.etree.ElementTree.
3737
38- .. versionchanged :: 2.7
38+ .. versionchanged :: 3.2
3939 The ElementTree API is updated to 1.3. For more information, see
4040 `Introducing ElementTree 1.3
4141 <http://effbot.org/zone/elementtree-13-intro.htm> `_.
@@ -80,7 +80,7 @@ Functions
8080 optional parser instance. If not given, the standard :class: `XMLParser `
8181 parser is used. Returns an :class: `Element ` instance.
8282
83- .. versionadded :: 2.7
83+ .. versionadded :: 3.2
8484
8585
8686.. function :: iselement(element)
@@ -133,7 +133,7 @@ Functions
133133 attributes in this namespace will be serialized with the given prefix, if at
134134 all possible.
135135
136- .. versionadded :: 2.7
136+ .. versionadded :: 3.2
137137
138138
139139.. function :: SubElement(parent, tag, attrib={}, **extra)
@@ -167,7 +167,7 @@ Functions
167167 any specific sequence, except that ``"".join(tostringlist(element)) ==
168168 tostring(element) ``.
169169
170- .. versionadded :: 2.7
170+ .. versionadded :: 3.2
171171
172172
173173.. function :: XML(text, parser=None)
@@ -282,7 +282,7 @@ Element Objects
282282 Appends *subelements * from a sequence object with zero or more elements.
283283 Raises :exc: `AssertionError ` if a subelement is not a valid object.
284284
285- .. versionadded :: 2.7
285+ .. versionadded :: 3.2
286286
287287
288288 .. method :: find(match)
@@ -336,15 +336,15 @@ Element Objects
336336 Finds all matching subelements, by tag name or path. Returns an iterable
337337 yielding all matching elements in document order.
338338
339- .. versionadded :: 2.7
339+ .. versionadded :: 3.2
340340
341341
342342 .. method :: itertext()
343343
344344 Creates a text iterator. The iterator loops over this element and all
345345 subelements, in document order, and returns all inner text.
346346
347- .. versionadded :: 2.7
347+ .. versionadded :: 3.2
348348
349349
350350 .. method :: makeelement(tag, attrib)
@@ -446,7 +446,7 @@ ElementTree Objects
446446 getroot().iterfind(match). Returns an iterable yielding all matching
447447 elements in document order.
448448
449- .. versionadded :: 2.7
449+ .. versionadded :: 3.2
450450
451451
452452 .. method :: parse(source, parser=None)
@@ -559,7 +559,7 @@ TreeBuilder Objects
559559 the public identifier. *system * is the system identifier. This method
560560 does not exist on the default :class: `TreeBuilder ` class.
561561
562- .. versionadded :: 2.7
562+ .. versionadded :: 3.2
563563
564564
565565.. _elementtree-xmlparser-objects :
0 commit comments