diff options
author | Guido van Rossum <guido@python.org> | 1998-08-10 20:07:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-08-10 20:07:00 (GMT) |
commit | 2880f6ec95396a7f0e10ef46c7fa9f6fa2e3e202 (patch) | |
tree | 459ae8de021138f250b23671d5fcbcda1640593f /Lib/smtplib.py | |
parent | 295da24eafd9c3bb9326d62a1a2e822059698b2b (diff) | |
download | cpython-2880f6ec95396a7f0e10ef46c7fa9f6fa2e3e202.zip cpython-2880f6ec95396a7f0e10ef46c7fa9f6fa2e3e202.tar.gz cpython-2880f6ec95396a7f0e10ef46c7fa9f6fa2e3e202.tar.bz2 |
Untabified and deleted trailing blank lines.
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 426af19..a812ef9 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -135,7 +135,7 @@ class SMTP: """Connect to a host on a given port. If the hostname ends with a colon (`:') followed by a number, - and there is no port specified, that suffix will be stripped + and there is no port specified, that suffix will be stripped off and the number interpreted as the port number to use. Note: This method is automatically invoked by __init__, @@ -161,9 +161,9 @@ class SMTP: """Send `str' to the server.""" if self.debuglevel > 0: print 'send:', `str` if self.sock: - try: + try: self.sock.send(str) - except socket.error: + except socket.error: raise SMTPServerDisconnected else: raise SMTPServerDisconnected @@ -241,9 +241,9 @@ class SMTP: return code self.does_esmtp=1 #parse the ehlo responce -ddm - resp=string.split(self.ehlo_resp,'\n') + resp=string.split(self.ehlo_resp,'\n') del resp[0] - for each in resp: + for each in resp: m=re.match(r'(?P<feature>[A-Za-z0-9][A-Za-z0-9\-]*)',each) if m: feature=string.lower(m.group("feature")) @@ -327,8 +327,8 @@ class SMTP: for the mail command - rcpt_options : List of ESMTP options (such as DSN commands) for all the rcpt commands - If there has been no previous EHLO or HELO command this session, - this method tries ESMTP EHLO first. If the server does ESMTP, message + If there has been no previous EHLO or HELO command this session, + this method tries ESMTP EHLO first. If the server does ESMTP, message size and each of the specified options will be passed to it. If EHLO fails, HELO will be tried and ESMTP options suppressed. @@ -431,5 +431,3 @@ if __name__ == '__main__': server.set_debuglevel(1) server.sendmail(fromaddr, toaddrs, msg) server.quit() - - |