summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-08-10 19:31:20 (GMT)
committerGuido van Rossum <guido@python.org>1995-08-10 19:31:20 (GMT)
commitbaf642ed169dc8232e951249896346585d2b2cc0 (patch)
treebd8d8ecfd7244a178ac6d3ddab9fd1b222a52302
parent9f824a7984fcd98d00dfc795e6a1d95317fd4b93 (diff)
downloadcpython-baf642ed169dc8232e951249896346585d2b2cc0.zip
cpython-baf642ed169dc8232e951249896346585d2b2cc0.tar.gz
cpython-baf642ed169dc8232e951249896346585d2b2cc0.tar.bz2
exec() -> exec
-rwxr-xr-xLib/importall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importall.py b/Lib/importall.py
index 1383e80..780862c 100755
--- a/Lib/importall.py
+++ b/Lib/importall.py
@@ -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]'