From: Guido van Rossum Date: Thu, 10 Aug 1995 19:31:20 +0000 (+0000) Subject: exec() -> exec X-Git-Tag: v1.3b1~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=baf642ed169dc8232e951249896346585d2b2cc0;p=thirdparty%2FPython%2Fcpython.git exec() -> exec --- diff --git a/Lib/importall.py b/Lib/importall.py index 1383e8079063..780862cf33ae 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]'