From: Georg Brandl Date: Sun, 24 Jun 2012 17:56:31 +0000 (+0200) Subject: urllib.request: fix spacing errors in exception/warning messages. X-Git-Tag: v3.3.0b1~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fcbdbf22e3f0c17442c98d2091067f34f9770fc3;p=thirdparty%2FPython%2Fcpython.git urllib.request: fix spacing errors in exception/warning messages. --- diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index 9cbf8aaf5ae7..67b4c795b36e 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -785,8 +785,8 @@ class ProxyHandler(BaseHandler): 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 @@ class AbstractHTTPHandler(BaseHandler): 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 @@ class URLopener: # 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: