summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-11-19-10-23-58.bpo-25988.6o7gGK.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-11-19-10-23-58.bpo-25988.6o7gGK.rst b/Misc/NEWS.d/next/Library/2018-11-19-10-23-58.bpo-25988.6o7gGK.rst
new file mode 100644
index 0000000..21d25e8
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-11-19-10-23-58.bpo-25988.6o7gGK.rst
@@ -0,0 +1,2 @@
+The abstract base classes in :mod:`collections.abc` no longer are exposed in
+the regular :mod:`collections` module.