Remove redundant import (PyChecker).

Update greeting message to avoid the long copyright notice.
This commit is contained in:
Guido van Rossum 2001-08-13 15:58:26 +00:00
parent 4a5555b19d
commit 97dbec97bc
1 changed files with 4 additions and 2 deletions

View File

@ -358,7 +358,7 @@ class RExec(ihooks._Verbose):
def test():
import sys, getopt, traceback
import getopt, traceback
opts, args = getopt.getopt(sys.argv[1:], 'vt:')
verbose = 0
trusted = []
@ -384,7 +384,9 @@ def test():
return 1
if fp.isatty():
print "*** RESTRICTED *** Python", sys.version
print sys.copyright
print 'Type "help", "copyright", "credits" or "license" ' \
'for more information.'
while 1:
try:
try: