From: Guido van Rossum Date: Mon, 3 May 1999 18:08:16 +0000 (+0000) Subject: No need to import sys or linecache. (Andrew Dalke & kjpylint) X-Git-Tag: v1.6a1~1386 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db6d12c49835de33fb765df8e0be82ec144d64a1;p=thirdparty%2FPython%2Fcpython.git No need to import sys or linecache. (Andrew Dalke & kjpylint) --- diff --git a/Lib/cmd.py b/Lib/cmd.py index 9ca0010a1aee..7cb5a025ca46 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 + '_'