8000 Add missing space to warning message (GH-14915) · python/cpython@c4106af · GitHub
[go: up one dir, main page]

Skip to content

Commit c4106af

Browse files
The-Compilerrhettinger
authored andcommitted
Add missing space to warning message (GH-14915)
This typo was introduced in GH-13409 when changing the message text.
1 parent 71876fa commit c4106af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/collections/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __getattr__(name):
4747
obj = getattr(_collections_abc, name)
4848
import warnings
4949
warnings.warn("Using or importing the ABCs from 'collections' instead "
50-
"of from 'collections.abc' is deprecated since Python 3.3,"
50+
"of from 'collections.abc' is deprecated since Python 3.3, "
5151
"and in 3.9 it will stop working",
5252
DeprecationWarning, stacklevel=2)
5353
globals()[name] = obj

0 commit comments

Comments
 (0)
0