diff options
author | Matthias Bussonnier <mbussonnier@ucmerced.edu> | 2019-05-30 21:45:48 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-05-30 21:45:48 (GMT) |
commit | eea47e09394dfb64d3a59a601d947d25bb1bdc96 (patch) | |
tree | 9f3514663245875ac63e1cb5084d55c06d615266 /Lib | |
parent | 5437ccca1424e415a938c583df43d8cc74047d16 (diff) | |
download | cpython-eea47e09394dfb64d3a59a601d947d25bb1bdc96.zip cpython-eea47e09394dfb64d3a59a601d947d25bb1bdc96.tar.gz cpython-eea47e09394dfb64d3a59a601d947d25bb1bdc96.tar.bz2 |
bpo-36953: Delay removal of ABCs from collections. (GH-13409)
Bump the removal to 3.9, indicate collections.abc available since 3.3,
replace version-changed directive to deprecated-removed.
https://bugs.python.org/issue36953
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/collections/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index cb7f1bb..5b740d8 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -47,8 +47,8 @@ def __getattr__(name): obj = getattr(_collections_abc, name) import warnings warnings.warn("Using or importing the ABCs from 'collections' instead " - "of from 'collections.abc' is deprecated, " - "and in 3.8 it will stop working", + "of from 'collections.abc' is deprecated since Python 3.3," + "and in 3.9 it will stop working", DeprecationWarning, stacklevel=2) globals()[name] = obj return obj |