summaryrefslogtreecommitdiffstats
path: root/Lib/imaplib.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-11-24 02:35:35 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-11-24 02:35:35 (GMT)
commit77c06fbf942bf4c532d0f8d6f254882a9e5957ec (patch)
treec892e2501626f2657386eb39c524611215ded052 /Lib/imaplib.py
parentb808c5cf2da088e66f43de61d3c5d741b134f419 (diff)
downloadcpython-77c06fbf942bf4c532d0f8d6f254882a9e5957ec.zip
cpython-77c06fbf942bf4c532d0f8d6f254882a9e5957ec.tar.gz
cpython-77c06fbf942bf4c532d0f8d6f254882a9e5957ec.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r--Lib/imaplib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index da456d6..47fbafa5 100644
--- a/Lib/imaplib.py
+++ b/Lib/imaplib.py
@@ -330,7 +330,7 @@ class IMAP4:
"""
mech = mechanism.upper()
cap = 'AUTH=%s' % mech
- #if not cap in self.capabilities: # Let the server decide!
+ #if not cap in self.capabilities: # Let the server decide!
# raise self.error("Server doesn't allow %s authentication." % mech)
self.literal = _Authenticator(authobject).process
typ, dat = self._simple_command('AUTHENTICATE', mech)
@@ -1401,7 +1401,7 @@ if __name__ == '__main__':
else:
M = IMAP4(host)
if M.state == 'AUTH':
- test_seq1 = test_seq1[1:] # Login not needed
+ test_seq1 = test_seq1[1:] # Login not needed
M._mesg('PROTOCOL_VERSION = %s' % M.PROTOCOL_VERSION)
M._mesg('CAPABILITIES = %s' % `M.capabilities`)