From: Andrew M. Kuchling Date: Mon, 13 Aug 2001 14:41:39 +0000 (+0000) Subject: Remove redundant import X-Git-Tag: v2.2a3~600 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6be424fdd6d6aeeb72e00bfda81ecaf67cdfa283;p=thirdparty%2FPython%2Fcpython.git Remove redundant import --- diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 3d28b0d56682..61b733e58fc2 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 + ": ")