diff options
author | Hugo <hugovk@users.noreply.github.com> | 2018-08-26 16:10:15 +0300 |
---|---|---|
committer | Hugo <hugovk@users.noreply.github.com> | 2018-08-26 16:10:15 +0300 |
commit | 1e10b9dd4b1cba9d624f08dc5f7730c79ff63ced (patch) | |
tree | c0ce659874330169a1fc01f57ba376edf49bc6d6 /benchmark/benchbase.py | |
parent | 7063ee19a13facad087b8b1e886a1f7efc7887c2 (diff) | |
download | python-lxml-1e10b9dd4b1cba9d624f08dc5f7730c79ff63ced.tar.gz |
Keep parentheses
Diffstat (limited to 'benchmark/benchbase.py')
-rw-r--r-- | benchmark/benchbase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/benchbase.py b/benchmark/benchbase.py index ce4afb86..e34e6103 100644 --- a/benchmark/benchbase.py +++ b/benchmark/benchbase.py @@ -11,7 +11,7 @@ def exec_(code, glob): if sys.version_info[0] >= 3: exec(code, glob) else: - exec "exec code in glob" + exec("exec code in glob") TREE_FACTOR = 1 # increase tree size with '-l / '-L' cmd option |