diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-03 16:31:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-03 16:31:24 (GMT) |
commit | 2aa694dd55202eb6d062fdf49c07cf95f8520f2d (patch) | |
tree | 2a8dd098805dc20010ac65bbad415601a4da04d6 | |
parent | 5a92f42d8723ee865be80f028d402204649da15d (diff) | |
download | cpython-2aa694dd55202eb6d062fdf49c07cf95f8520f2d.zip cpython-2aa694dd55202eb6d062fdf49c07cf95f8520f2d.tar.gz cpython-2aa694dd55202eb6d062fdf49c07cf95f8520f2d.tar.bz2 |
bpo-39674: Update collections ABC deprecation doc (GH-18748)
-rw-r--r-- | Doc/library/collections.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index a5e8d04..8dcf945 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -33,10 +33,10 @@ Python's general purpose built-in containers, :class:`dict`, :class:`list`, :class:`UserString` wrapper around string objects for easier string subclassing ===================== ==================================================================== -.. deprecated-removed:: 3.3 3.9 +.. deprecated-removed:: 3.3 3.10 Moved :ref:`collections-abstract-base-classes` to the :mod:`collections.abc` module. For backwards compatibility, they continue to be visible in this module through - Python 3.8. + Python 3.9. :class:`ChainMap` objects |