aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-07-16 21:35:23 +0000
committerTim Peters <tim.peters@gmail.com>2002-07-16 21:35:23 +0000
commitc411dbaeee29dba87d5432a92fe76ea65d8e25f0 (patch)
tree45b71b45b9b5c2f2ddc1b644166208cd041f076c /Lib/imaplib.py
parentSend HTTP requests with a single send() call instead of many. (diff)
downloadcpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.tar.gz
cpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.tar.bz2
cpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.zip
Whitespace normalization.
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r--Lib/imaplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index ed03c56e41b..91e9cb99f70 100644
--- a/Lib/imaplib.py
+++ b/Lib/imaplib.py
@@ -1058,7 +1058,7 @@ class IMAP4_SSL(IMAP4):
# sslobj.read() sometimes returns < size bytes
data = self.sslobj.read(size)
while len(data) < size:
- data += self.sslobj.read(size-len(data))
+ data += self.sslobj.read(size-len(data))
return data