summaryrefslogtreecommitdiff
path: root/bench/bench.py
diff options
context:
space:
mode:
Diffstat (limited to 'bench/bench.py')
-rw-r--r--bench/bench.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/bench.py b/bench/bench.py
index 1a98d8c2..f1d18c61 100644
--- a/bench/bench.py
+++ b/bench/bench.py
@@ -23,7 +23,7 @@
#
# This will allow (as much as possible) us to time just the code itself,
# not Python function call overhead.
-
+from __future__ import division, print_function
import getopt
import sys
@@ -94,7 +94,7 @@ exec(open(args[0], 'rU').read())
try:
FunctionList
except NameError:
- function_names = sorted([x for x in list(locals().keys()) if x[:4] == FunctionPrefix])
+ function_names = sorted([x for x in locals().keys() if x[:4] == FunctionPrefix])
l = [locals()[f] for f in function_names]
FunctionList = [f for f in l if isinstance(f, types.FunctionType)]