diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-03 16:31:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-03 16:31:11 (GMT) |
commit | 91fe4142642286b65c166f7b6e27de16f42b1286 (patch) | |
tree | fd4dbad3189598091cd9a0ef6904f001b56b8b92 | |
parent | e0acec15412203359d59db33e447698ee51e07fc (diff) | |
download | cpython-91fe4142642286b65c166f7b6e27de16f42b1286.zip cpython-91fe4142642286b65c166f7b6e27de16f42b1286.tar.gz cpython-91fe4142642286b65c166f7b6e27de16f42b1286.tar.bz2 |
bpo-39674: Update collections ABC deprecation doc (GH-18747)
-rw-r--r-- | Doc/library/collections.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 65cdf34..8dcf945 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -36,7 +36,7 @@ Python's general purpose built-in containers, :class:`dict`, :class:`list`, .. 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 |