summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-11-01 12:19:37 (GMT)
committerGitHub <noreply@github.com>2018-11-01 12:19:37 (GMT)
commit89138f286938753f273c90547491efe374e617c1 (patch)
tree00906a8e7ce6f1d9e7a10247ff172df9ba3efeb8
parentff56597151206a03ce421712516323430b7749c8 (diff)
downloadcpython-89138f286938753f273c90547491efe374e617c1.zip
cpython-89138f286938753f273c90547491efe374e617c1.tar.gz
cpython-89138f286938753f273c90547491efe374e617c1.tar.bz2
[3.6] bpo-35128: Fix spacing issues in warning.warn() messages. (GH-10268). (GH-10281)
(cherry picked from commit 4b5e62dbb22a3593e0db266c12f805b727a42b00) Co-authored-by: Pablo Aguiar <scorphus@gmail.com>
-rw-r--r--Lib/ftplib.py2
-rw-r--r--Lib/imaplib.py2
-rw-r--r--Lib/poplib.py2
-rwxr-xr-xLib/smtplib.py4
4 files changed, 5 insertions, 5 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py
index a02e595..2ff251a 100644
--- a/Lib/ftplib.py
+++ b/Lib/ftplib.py
@@ -732,7 +732,7 @@ else:
"exclusive")
if keyfile is not None or certfile is not None:
import warnings
- warnings.warn("keyfile and certfile are deprecated, use a"
+ warnings.warn("keyfile and certfile are deprecated, use a "
"custom context instead", DeprecationWarning, 2)
self.keyfile = keyfile
self.certfile = certfile
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index b9a01d6..67b2cc0 100644
--- a/Lib/imaplib.py
+++ b/Lib/imaplib.py
@@ -1277,7 +1277,7 @@ if HAVE_SSL:
"exclusive")
if keyfile is not None or certfile is not None:
import warnings
- warnings.warn("keyfile and certfile are deprecated, use a"
+ warnings.warn("keyfile and certfile are deprecated, use a "
"custom ssl_context instead", DeprecationWarning, 2)
self.keyfile = keyfile
self.certfile = certfile
diff --git a/Lib/poplib.py b/Lib/poplib.py
index d8a62c0..9796f0d 100644
--- a/Lib/poplib.py
+++ b/Lib/poplib.py
@@ -436,7 +436,7 @@ if HAVE_SSL:
"exclusive")
if keyfile is not None or certfile is not None:
import warnings
- warnings.warn("keyfile and certfile are deprecated, use a"
+ warnings.warn("keyfile and certfile are deprecated, use a "
"custom context instead", DeprecationWarning, 2)
self.keyfile = keyfile
self.certfile = certfile
diff --git a/Lib/smtplib.py b/Lib/smtplib.py
index 5e1bc0b..6091c7f 100755
--- a/Lib/smtplib.py
+++ b/Lib/smtplib.py
@@ -762,7 +762,7 @@ class SMTP:
"exclusive")
if keyfile is not None or certfile is not None:
import warnings
- warnings.warn("keyfile and certfile are deprecated, use a"
+ warnings.warn("keyfile and certfile are deprecated, use a "
"custom context instead", DeprecationWarning, 2)
if context is None:
context = ssl._create_stdlib_context(certfile=certfile,
@@ -1019,7 +1019,7 @@ if _have_ssl:
"exclusive")
if keyfile is not None or certfile is not None:
import warnings
- warnings.warn("keyfile and certfile are deprecated, use a"
+ warnings.warn("keyfile and certfile are deprecated, use a "
"custom context instead", DeprecationWarning, 2)
self.keyfile = keyfile
self.certfile = certfile