summaryrefslogtreecommitdiffstats
path: root/Lib/httplib.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-11-09 05:08:07 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-11-09 05:08:07 (GMT)
commit230a60c6ec4861342278fb4546ebc907baf3b23b (patch)
tree00135e543b64638036efcacdc9d5dbfde7988959 /Lib/httplib.py
parentb0ead4ea4a1e0f4e5dc2a00110be8038586c9e21 (diff)
downloadcpython-230a60c6ec4861342278fb4546ebc907baf3b23b.zip
cpython-230a60c6ec4861342278fb4546ebc907baf3b23b.tar.gz
cpython-230a60c6ec4861342278fb4546ebc907baf3b23b.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r--Lib/httplib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py
index e6dc898..077fb25 100644
--- a/Lib/httplib.py
+++ b/Lib/httplib.py
@@ -371,7 +371,7 @@ class HTTPResponse:
if self.chunked:
return self._read_chunked(amt)
-
+
if amt is None:
# unbounded read
if self.will_close:
@@ -441,7 +441,7 @@ class HTTPResponse:
self.close()
return value
-
+
def _safe_read(self, amt):
"""Read the number of bytes requested, compensating for partial reads.