summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Gerstel <2102431+Anthchirp@users.noreply.github.com>2021-04-08 23:29:19 (GMT)
committerGitHub <noreply@github.com>2021-04-08 23:29:19 (GMT)
commit20d56bd41b56023ce9fa3739c0c9aa8be8d48bfa (patch)
tree7b4681d6911e832fa2804bd072a0f4151d9d5bee
parent754dc353565eeb4a43a912417cc5b66959458f1b (diff)
downloadcpython-20d56bd41b56023ce9fa3739c0c9aa8be8d48bfa.zip
cpython-20d56bd41b56023ce9fa3739c0c9aa8be8d48bfa.tar.gz
cpython-20d56bd41b56023ce9fa3739c0c9aa8be8d48bfa.tar.bz2
bpo-39674: Fix collections ABC deprecation notice (GH-25281)
The deprecation originally slated for 3.9 was deferred to 3.10 (bpo-39674, GH-18545) and the documentation on the 3.8 release was updated accordingly (GH-18748). However the deprecation notice in the code was left as is, and still indicates deprecation with 3.9.
-rw-r--r--Lib/collections/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
index a78a47c..064e362 100644
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -48,7 +48,7 @@ def __getattr__(name):
import warnings
warnings.warn("Using or importing the ABCs from 'collections' instead "
"of from 'collections.abc' is deprecated since Python 3.3, "
- "and in 3.9 it will stop working",
+ "and in 3.10 it will stop working",
DeprecationWarning, stacklevel=2)
globals()[name] = obj
return obj