We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b61b818 commit 6467134Copy full SHA for 6467134
1 file changed
Doc/whatsnew/3.9.rst
@@ -671,7 +671,11 @@ Removed
671
module have been removed. They were deprecated in Python 3.2.
672
Use ``iter(x)`` or ``list(x)`` instead of ``x.getchildren()`` and
673
``x.iter()`` or ``list(x.iter())`` instead of ``x.getiterator()``.
674
- The ``xml.etree.cElementTree`` module has been removed.
+ The ``xml.etree.cElementTree`` module has been removed,
675
+ use the :mod:`xml.etree.ElementTree` module instead.
676
+ Since Python 3.3 the ``xml.etree.cElementTree`` module has been deprecated,
677
+ the ``xml.etree.ElementTree`` module uses a fast implementation whenever
678
+ available.
679
(Contributed by Serhiy Storchaka in :issue:`36543`.)
680
681
* The old :mod:`plistlib` API has been removed, it was deprecated since Python
0 commit comments