summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/xml.etree.elementtree.rst2
-rw-r--r--Doc/whatsnew/3.9.rst5
2 files changed, 2 insertions, 5 deletions
diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst
index 2085a85..7725e4d 100644
--- a/Doc/library/xml.etree.elementtree.rst
+++ b/Doc/library/xml.etree.elementtree.rst
@@ -15,6 +15,8 @@ for parsing and creating XML data.
.. versionchanged:: 3.3
This module will use a fast implementation whenever available.
+
+.. deprecated:: 3.3
The :mod:`xml.etree.cElementTree` module is deprecated.
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index b20cd14..67a83bc 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -826,11 +826,6 @@ Removed
module have been removed. They were deprecated in Python 3.2.
Use ``iter(x)`` or ``list(x)`` instead of ``x.getchildren()`` and
``x.iter()`` or ``list(x.iter())`` instead of ``x.getiterator()``.
- The ``xml.etree.cElementTree`` module has been removed,
- use the :mod:`xml.etree.ElementTree` module instead.
- Since Python 3.3 the ``xml.etree.cElementTree`` module has been deprecated,
- the ``xml.etree.ElementTree`` module uses a fast implementation whenever
- available.
(Contributed by Serhiy Storchaka in :issue:`36543`.)
* The old :mod:`plistlib` API has been removed, it was deprecated since Python