]> granicus.if.org Git - python/commitdiff
No need to import sys or linecache. (Andrew Dalke & kjpylint)
authorGuido van Rossum <guido@python.org>
Mon, 3 May 1999 18:08:16 +0000 (18:08 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 3 May 1999 18:08:16 +0000 (18:08 +0000)
Lib/cmd.py

index 9ca0010a1aee3db457b52bcb91309b404cf184c3..7cb5a025ca464af1c0225370f5cdc8df3ff4fc18 100644 (file)
@@ -36,8 +36,6 @@
 #
 
 import string
-import sys
-import linecache
 
 PROMPT = '(Cmd) '
 IDENTCHARS = string.letters + string.digits + '_'