diff options
author | Georg Brandl <georg@python.org> | 2010-07-30 09:54:44 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-30 09:54:44 +0000 |
commit | d32093ca7725382cb1c797b5cc5358689446ad07 (patch) | |
tree | bdfd4394bfaa14c07dd45c1fa3578bd7a33e6bc2 /Lib/cmd.py | |
parent | f19d1238f667052669dc543592927b05a62f3ada (diff) | |
download | cpython-d32093ca7725382cb1c797b5cc5358689446ad07.tar.gz |
Remove redundant import.
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r-- | Lib/cmd.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/cmd.py b/Lib/cmd.py index 8976988c09..c791d6b256 100644 --- a/Lib/cmd.py +++ b/Lib/cmd.py @@ -84,7 +84,6 @@ class Cmd: sys.stdin and sys.stdout are used. """ - import sys if stdin is not None: self.stdin = stdin else: |