diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-06-10 16:01:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 16:01:25 (GMT) |
commit | 3b97d1becbe08cf56c58d9c740a4622cbf6285fd (patch) | |
tree | da5877514b48e8d90edd19898371d3e25ef50f59 /Doc/whatsnew | |
parent | d55ed7b10794b6ee6a04a564e6d714368d520c15 (diff) | |
download | cpython-3b97d1becbe08cf56c58d9c740a4622cbf6285fd.zip cpython-3b97d1becbe08cf56c58d9c740a4622cbf6285fd.tar.gz cpython-3b97d1becbe08cf56c58d9c740a4622cbf6285fd.tar.bz2 |
bpo-36543: Revert "bpo-36543: Remove the xml.etree.cElementTree module." (GH-20117) (GH-20780)
* Revert "bpo-36543: Remove the xml.etree.cElementTree module. (GH-19108)"
This reverts commit b33e52511a59c6da7132c226b7f7489b092a33eb.
(cherry picked from commit ec88e1bca81a167e6d5c0ac635e22f84298cb1df)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index e9814a8..66dce83 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 |