summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-10-07 09:10:15 (GMT)
committerGitHub <noreply@github.com>2019-10-07 09:10:15 (GMT)
commitef092fe9905f61ca27889092ca1248a11aa74498 (patch)
tree8cba272926bbc17686ad23bf85f299e501b55e39 /Doc/whatsnew
parent9e71917e0290972f65711f75510078f799cf0b59 (diff)
downloadcpython-ef092fe9905f61ca27889092ca1248a11aa74498.zip
cpython-ef092fe9905f61ca27889092ca1248a11aa74498.tar.gz
cpython-ef092fe9905f61ca27889092ca1248a11aa74498.tar.bz2
bpo-25988: Do not expose abstract collection classes in the collections module. (GH-10596)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.9.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 690b536..9f2a659 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -195,6 +195,11 @@ Deprecated
Removed
=======
+* The abstract base classes in :mod:`collections.abc` no longer are
+ exposed in the regular :mod:`collections` module. This will help
+ create a clearer distinction between the concrete classes and the abstract
+ base classes.
+
* The undocumented ``sys.callstats()`` function has been removed. Since Python
3.7, it was deprecated and always returned :const:`None`. It required a special
build option ``CALL_PROFILE`` which was already removed in Python 3.7.