From: Guido van Rossum Date: Mon, 13 Aug 2001 15:34:41 +0000 (+0000) Subject: Remove redundant 'import sys' (PyChecker). X-Git-Tag: v2.2a3~585 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a79bbaca544744013349e283148da8a9f31f7c05;p=thirdparty%2FPython%2Fcpython.git Remove redundant 'import sys' (PyChecker). --- diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 7c28d037804d..c82b455ee816 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -1118,7 +1118,7 @@ if __debug__: if __name__ == '__main__': - import getopt, getpass, sys + import getopt, getpass try: optlist, args = getopt.getopt(sys.argv[1:], 'd:')