diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index a78a47c55a8fc9..064e3622863f3d 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