File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ for parsing and creating XML data.
15
15
16
16
.. versionchanged :: 3.3
17
17
This module will use a fast implementation whenever available.
18
+
19
+ .. versiondeprecated :: 3.3
18
20
The :mod: `xml.etree.cElementTree ` module is deprecated.
19
21
20
22
Original file line number Diff line number Diff line change @@ -670,11 +670,6 @@ Removed
670
670
module have been removed. They were deprecated in Python 3.2.
671
671
Use ``iter(x) `` or ``list(x) `` instead of ``x.getchildren() `` and
672
672
``x.iter() `` or ``list(x.iter()) `` instead of ``x.getiterator() ``.
673
- The ``xml.etree.cElementTree `` module has been removed,
674
- use the :mod: `xml.etree.ElementTree ` module instead.
675
- Since Python 3.3 the ``xml.etree.cElementTree `` module has been deprecated,
676
- the ``xml.etree.ElementTree `` module uses a fast implementation whenever
677
- available.
678
673
(Contributed by Serhiy Storchaka in :issue: `36543 `.)
679
674
680
675
* The old :mod: `plistlib ` API has been removed, it was deprecated since Python
Original file line number Diff line number Diff line change @@ -3372,7 +3372,7 @@ markup and any values in the message. Patch by Paul Ganssle
3372
3372
.. section: Library
3373
3373
3374
3374
Removed methods Element.getchildren(), Element.getiterator() and
3375
- ElementTree.getiterator() and the xml.etree.cElementTree module .
3375
+ ElementTree.getiterator().
3376
3376
3377
3377
..
3378
3378
You can’t perform that action at this time.
0 commit comments