Make tabnanny happy. (Piers, please run the test suite before

checking in changes.  The test suite requires consistent use of spaces
and tabs.)
This commit is contained in:
Guido van Rossum 2001-10-22 00:42:26 +00:00
parent fe6accfc36
commit d6bebce5e5
1 changed files with 7 additions and 7 deletions

View File

@ -222,13 +222,13 @@ class IMAP4:
def send(self, data):
"""Send data to remote."""
bytes = len(data)
while bytes > 0:
sent = self.sock.send(data)
if sent == bytes:
break # avoid copy
data = data[sent:]
bytes = bytes - sent
bytes = len(data)
while bytes > 0:
sent = self.sock.send(data)
if sent == bytes:
break # avoid copy
data = data[sent:]
bytes = bytes - sent
def shutdown(self):