diff options
author | Guido van Rossum <guido@python.org> | 1999-05-03 18:08:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-05-03 18:08:16 (GMT) |
commit | db6d12c49835de33fb765df8e0be82ec144d64a1 (patch) | |
tree | 5bbf19809376b7c7cb19b540802d3a76c47467e4 | |
parent | 00245cfbaa995ef54fcb4d8ecef97cba6f9307fe (diff) | |
download | cpython-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.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -36,8 +36,6 @@ # import string -import sys -import linecache PROMPT = '(Cmd) ' IDENTCHARS = string.letters + string.digits + '_' |