diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-08-13 14:41:39 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-08-13 14:41:39 (GMT) |
commit | 6be424fdd6d6aeeb72e00bfda81ecaf67cdfa283 (patch) | |
tree | d607d84b8f4904a5d2fc1842bca72de0a81ffc90 /Lib/smtplib.py | |
parent | 994b51e90619c4f74532310ed0e24a51c0a863d3 (diff) | |
download | cpython-6be424fdd6d6aeeb72e00bfda81ecaf67cdfa283.zip cpython-6be424fdd6d6aeeb72e00bfda81ecaf67cdfa283.tar.gz cpython-6be424fdd6d6aeeb72e00bfda81ecaf67cdfa283.tar.bz2 |
Remove redundant import
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 3d28b0d..61b733e 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -529,7 +529,7 @@ class SMTP: # Test the sendmail method, which tests most of the others. # Note: This always sends to localhost. if __name__ == '__main__': - import sys, rfc822 + import sys def prompt(prompt): sys.stdout.write(prompt + ": ") |