summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-08-13 15:34:41 (GMT)
committerGuido van Rossum <guido@python.org>2001-08-13 15:34:41 (GMT)
commita79bbaca544744013349e283148da8a9f31f7c05 (patch)
treeb977ce83fec7115d78d6d0a7df80f560f57065e7 /Lib
parentf9f48812d007cd44c0155f953d22cc9164d33b6f (diff)
downloadcpython-a79bbaca544744013349e283148da8a9f31f7c05.zip
cpython-a79bbaca544744013349e283148da8a9f31f7c05.tar.gz
cpython-a79bbaca544744013349e283148da8a9f31f7c05.tar.bz2
Remove redundant 'import sys' (PyChecker).
Diffstat (limited to 'Lib')
-rw-r--r--Lib/imaplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index 7c28d03..c82b455 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:')