diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-08-22 06:30:26 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-08-22 06:30:26 (GMT) |
commit | 8ede9676bb8350e6d0206158f795d48075e33081 (patch) | |
tree | 4e64d214ef43685fb4b9b366641344360bd54306 /Lib/collections | |
parent | 967d625a6df27fb490f035045ec8fe4675001d63 (diff) | |
download | cpython-8ede9676bb8350e6d0206158f795d48075e33081.zip cpython-8ede9676bb8350e6d0206158f795d48075e33081.tar.gz cpython-8ede9676bb8350e6d0206158f795d48075e33081.tar.bz2 |
Add missing space to warning message (GH-14915) (GH-15379)
This typo was introduced in GH-13409 when changing the message text.
(cherry picked from commit c4106af38bbcb180725fe0d9478e6a11f7a5e7b9)
Co-authored-by: Florian Bruhin <me@the-compiler.org>
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 3d1d93e..469690b 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 |