From baf642ed169dc8232e951249896346585d2b2cc0 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 10 Aug 1995 19:31:20 +0000 Subject: exec() -> exec --- Lib/importall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]' -- cgit v0.12