From: Guido van Rossum Date: Fri, 11 Aug 1995 14:24:47 +0000 (+0000) Subject: exec() -> exec X-Git-Tag: v1.3b1~51 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e2cb7274ea8288f5d071d96d1df43f1421244bac;p=thirdparty%2FPython%2Fcpython.git exec() -> exec --- diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index cf7c50dbe09c..4fbee3e76a1d 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -66,7 +66,7 @@ r(RuntimeError) print '(not used any more?)' r(SyntaxError) -try: exec('/\n') +try: exec '/\n' except SyntaxError: pass r(SystemError)