diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-04 14:11:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 14:11:43 (GMT) |
commit | a6d3546d003d9873de0f71b319ad79d203374bf0 (patch) | |
tree | edea886a00c3a4508815e54d1975a54914b09be7 | |
parent | 1ec63b62035e73111e204a0e03b83503e1c58f2e (diff) | |
download | cpython-a6d3546d003d9873de0f71b319ad79d203374bf0.zip cpython-a6d3546d003d9873de0f71b319ad79d203374bf0.tar.gz cpython-a6d3546d003d9873de0f71b319ad79d203374bf0.tar.bz2 |
bpo-39674: Fix typo in What's New In Python 3.9 (GH-18776)
-rw-r--r-- | Doc/whatsnew/3.9.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 6a4d07f..f15805c 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -85,7 +85,7 @@ It has been decided to keep a few backward compatibility layers for one last release, to give more time to Python projects maintainers to organize the removal of the Python 2 support and add support for Python 3.9. -Aliases to ref:`Abstract Base Classes <collections-abstract-base-classes>` in +Aliases to :ref:`Abstract Base Classes <collections-abstract-base-classes>` in the :mod:`collections` module, like ``collections.Mapping`` alias to :class:`collections.abc.Mapping`, are kept for one last release for backward compatibility. They will be removed from Python 3.10. |