summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-05-03 18:08:16 (GMT)
committerGuido van Rossum <guido@python.org>1999-05-03 18:08:16 (GMT)
commitdb6d12c49835de33fb765df8e0be82ec144d64a1 (patch)
tree5bbf19809376b7c7cb19b540802d3a76c47467e4
parent00245cfbaa995ef54fcb4d8ecef97cba6f9307fe (diff)
downloadcpython-db6d12c49835de33fb765df8e0be82ec144d64a1.zip
cpython-db6d12c49835de33fb765df8e0be82ec144d64a1.tar.gz
cpython-db6d12c49835de33fb765df8e0be82ec144d64a1.tar.bz2
No need to import sys or linecache. (Andrew Dalke & kjpylint)
-rw-r--r--Lib/cmd.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/cmd.py b/Lib/cmd.py
index 9ca0010..7cb5a02 100644
--- a/Lib/cmd.py
+++ b/Lib/cmd.py
@@ -36,8 +36,6 @@
#
import string
-import sys
-import linecache
PROMPT = '(Cmd) '
IDENTCHARS = string.letters + string.digits + '_'