diff options
author | Georg Brandl <georg@python.org> | 2006-09-06 06:51:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-09-06 06:51:57 (GMT) |
commit | 7cae87ca7b0a3a7ce497cbd335c8ec82fe680476 (patch) | |
tree | 612cc46e728bef49b19f3d4bc26fa4951b2c1c83 /Tools | |
parent | 4e472e05bdddde72d91d6f25d6e048371cf3c9be (diff) | |
download | cpython-7cae87ca7b0a3a7ce497cbd335c8ec82fe680476.zip cpython-7cae87ca7b0a3a7ce497cbd335c8ec82fe680476.tar.gz cpython-7cae87ca7b0a3a7ce497cbd335c8ec82fe680476.tar.bz2 |
Patch #1550800: make exec a function.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/compiler/ast.txt | 1 | ||||
-rwxr-xr-x | Tools/modulator/modulator.py | 4 | ||||
-rwxr-xr-x | Tools/scripts/fixdiv.py | 2 | ||||
-rwxr-xr-x | Tools/scripts/h2py.py | 4 |
4 files changed, 5 insertions, 6 deletions
diff --git a/Tools/compiler/ast.txt b/Tools/compiler/ast.txt index 0db14d7..1f69e7e 100644 --- a/Tools/compiler/ast.txt +++ b/Tools/compiler/ast.txt @@ -23,7 +23,6 @@ While: test, body, else_& With: expr, vars&, body If: tests!, else_& IfExp: test, then, else_ -Exec: expr, locals&, globals& From: modname*, names*, level* Import: names* Raise: expr1&, expr2&, expr3& diff --git a/Tools/modulator/modulator.py b/Tools/modulator/modulator.py index 3e06bc2..a06306b 100755 --- a/Tools/modulator/modulator.py +++ b/Tools/modulator/modulator.py @@ -126,7 +126,7 @@ class UI: fp = open(fn, 'w') try: - exec pycode + exec(pycode) except: message('An error occurred:-)') return @@ -371,7 +371,7 @@ def main(): fp = open(sys.argv[1]) pycode = fp.read() try: - exec pycode + exec(pycode) except: sys.stderr.write('An error occurred:-)\n') sys.exit(1) diff --git a/Tools/scripts/fixdiv.py b/Tools/scripts/fixdiv.py index 2bbd3d5..7e1ed0b 100755 --- a/Tools/scripts/fixdiv.py +++ b/Tools/scripts/fixdiv.py @@ -113,7 +113,7 @@ Notes: future division statement. - Warnings may be issued for code not read from a file, but executed - using an exec statement or the eval() function. These may have + using the exec() or eval() functions. These may have <string> in the filename position, in which case the fixdiv script will attempt and fail to open a file named '<string>' and issue a warning about this failure; or these may be reported as 'Phantom' diff --git a/Tools/scripts/h2py.py b/Tools/scripts/h2py.py index 63e7336..f4b8306 100755 --- a/Tools/scripts/h2py.py +++ b/Tools/scripts/h2py.py @@ -130,7 +130,7 @@ def process(fp, outfp, env = {}): ok = 0 stmt = '%s = %s\n' % (name, body.strip()) try: - exec stmt in env + exec(stmt, env) except: sys.stderr.write('Skipping: %s' % stmt) else: @@ -142,7 +142,7 @@ def process(fp, outfp, env = {}): body = pytify(body) stmt = 'def %s(%s): return %s\n' % (macro, arg, body) try: - exec stmt in env + exec(stmt, env) except: sys.stderr.write('Skipping: %s' % stmt) else: |