[Python-checkins] r83270 - python/branches/py3k/Lib/cmd.py

georg.brandl python-checkins at python.org
Fri Jul 30 11:54:45 CEST 2010


Author: georg.brandl
Date: Fri Jul 30 11:54:44 2010
New Revision: 83270

Log:
Remove redundant import.

Modified:
   python/branches/py3k/Lib/cmd.py

Modified: python/branches/py3k/Lib/cmd.py
==============================================================================
--- python/branches/py3k/Lib/cmd.py	(original)
+++ python/branches/py3k/Lib/cmd.py	Fri Jul 30 11:54:44 2010
@@ -84,7 +84,6 @@
         sys.stdin and sys.stdout are used.
 
         """
-        import sys
         if stdin is not None:
             self.stdin = stdin
         else:


More information about the Python-checkins mailing list