diff options
author | Facundo Batista <facundobatista@gmail.com> | 2008-02-23 12:27:17 (GMT) |
---|---|---|
committer | Facundo Batista <facundobatista@gmail.com> | 2008-02-23 12:27:17 (GMT) |
commit | 1660933d23ed99393c2ea9bbe0204318936e3bbc (patch) | |
tree | 767766b54f607b0fed90e4c386f5578246af5d89 /Lib/smtplib.py | |
parent | fc2d01032fa4eb2d5563c2619811d05567faf528 (diff) | |
download | cpython-1660933d23ed99393c2ea9bbe0204318936e3bbc.zip cpython-1660933d23ed99393c2ea9bbe0204318936e3bbc.tar.gz cpython-1660933d23ed99393c2ea9bbe0204318936e3bbc.tar.bz2 |
Issue 1776581. Minor corrections to smtplib, and two small tests.
Thanks Alan McIntyre.
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index bb9c239..75093ae 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -298,7 +298,7 @@ class SMTP: def send(self, str): """Send `str' to the server.""" if self.debuglevel > 0: print>>stderr, 'send:', repr(str) - if self.sock: + if hasattr(self, 'sock') and self.sock: try: self.sock.sendall(str) except socket.error: @@ -486,7 +486,7 @@ class SMTP: vrfy=verify def expn(self, address): - """SMTP 'verify' command -- checks for address validity.""" + """SMTP 'expn' command -- expands a mailing list.""" self.putcmd("expn", quoteaddr(address)) return self.getreply() |