diff options
Diffstat (limited to 'bench/bench.py')
-rw-r--r-- | bench/bench.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bench/bench.py b/bench/bench.py index e076e43..2acc29f 100644 --- a/bench/bench.py +++ b/bench/bench.py @@ -94,10 +94,9 @@ exec(open(args[0], 'rU').read()) try: FunctionList except NameError: - function_names = [x for x in locals().keys() if x[:4] == FunctionPrefix] - function_names.sort() + 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 type(f) == types.FunctionType] + FunctionList = [f for f in l if isinstance(f, types.FunctionType)] IterationList = [None] * Iterations |