[Python-checkins] cpython: urllib.request: fix spacing errors in exception/warning messages.

georg.brandl python-checkins at python.org
Sun Jun 24 20:04:19 CEST 2012


http://hg.python.org/cpython/rev/d0a898fc2e35
changeset:   77735:d0a898fc2e35
user:        Georg Brandl <georg at python.org>
date:        Sun Jun 24 19:56:31 2012 +0200
summary:
  urllib.request: fix spacing errors in exception/warning messages.

files:
  Lib/urllib/request.py |  10 +++++-----
  1 files changed, 5 insertions(+), 5 deletions(-)


diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -785,8 +785,8 @@
         self.proxies = proxies
         for type, url in proxies.items():
             setattr(self, '%s_open' % type,
-                    lambda r, proxy=url, type=type, meth=self.proxy_open: \
-                    meth(r, proxy, type))
+                    lambda r, proxy=url, type=type, meth=self.proxy_open:
+                        meth(r, proxy, type))
 
     def proxy_open(self, req, proxy, type):
         orig_type = req.type
@@ -1178,8 +1178,8 @@
         if request.data is not None:  # POST
             data = request.data
             if isinstance(data, str):
-                msg = "POST data should be bytes or an iterable of bytes."\
-                      "It cannot be str"
+                msg = "POST data should be bytes or an iterable of bytes. " \
+                      "It cannot be of type str."
                 raise TypeError(msg)
             if not request.has_header('Content-type'):
                 request.add_unredirected_header(
@@ -1576,7 +1576,7 @@
 
     # Constructor
     def __init__(self, proxies=None, **x509):
-        msg = "%(class)s style of invoking requests is deprecated."\
+        msg = "%(class)s style of invoking requests is deprecated. " \
               "Use newer urlopen functions/methods" % {'class': self.__class__.__name__}
         warnings.warn(msg, DeprecationWarning, stacklevel=3)
         if proxies is None:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list