exec() -> exec

This commit is contained in:
Guido van Rossum 1995-08-10 19:31:20 +00:00
parent 9f824a7984
commit baf642ed16
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ for dir in sys.path:
s = 'import ' + head
print s
try:
exec(s + '\n')
exec s + '\n'
except KeyboardInterrupt:
del names[:]
print '\n[interrupt]'