diff options
author | Florian Bruhin <me@the-compiler.org> | 2019-08-22 06:06:51 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-08-22 06:06:51 (GMT) |
commit | c4106af38bbcb180725fe0d9478e6a11f7a5e7b9 (patch) | |
tree | 718b0063ca9415c8499fcb665fa2d0627ea857bc /Lib/collections | |
parent | 71876fa438f706b211360d8c205cb985906212ee (diff) | |
download | cpython-c4106af38bbcb180725fe0d9478e6a11f7a5e7b9.zip cpython-c4106af38bbcb180725fe0d9478e6a11f7a5e7b9.tar.gz cpython-c4106af38bbcb180725fe0d9478e6a11f7a5e7b9.tar.bz2 |
Add missing space to warning message (GH-14915)
This typo was introduced in GH-13409 when changing the message text.
Diffstat (limited to 'Lib/collections')
-rw-r--r-- | Lib/collections/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 75d7975..6a3e599 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -47,7 +47,7 @@ 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 since Python 3.3," + "of from 'collections.abc' is deprecated since Python 3.3, " "and in 3.9 it will stop working", DeprecationWarning, stacklevel=2) globals()[name] = obj |