commit | baf642ed169dc8232e951249896346585d2b2cc0 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Aug 10 19:31:20 1995 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Aug 10 19:31:20 1995 +0000 |
tree | bd8d8ecfd7244a178ac6d3ddab9fd1b222a52302 | |
parent | 9f824a7984fcd98d00dfc795e6a1d95317fd4b93 [diff] [blame] |
exec() -> exec
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 @@ s = 'import ' + head print s try: - exec(s + '\n') + exec s + '\n' except KeyboardInterrupt: del names[:] print '\n[interrupt]'