diff options
author | Steven Knight <knight@baldmt.com> | 2010-04-20 06:00:36 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-04-20 06:00:36 (GMT) |
commit | 8a3e19c85c853ad7ee45b45e4afb63a617946145 (patch) | |
tree | d3f8269d0e8c1d76786aa3a415ba616b18c5d04e /bench/bench.py | |
parent | 7cc7b7c437b79c27354859b1d81f8338a6ce7a2d (diff) | |
download | SCons-8a3e19c85c853ad7ee45b45e4afb63a617946145.zip SCons-8a3e19c85c853ad7ee45b45e4afb63a617946145.tar.gz SCons-8a3e19c85c853ad7ee45b45e4afb63a617946145.tar.bz2 |
Rewrite uses of reduce(), which is being deprecated for Python 3.x.
Diffstat (limited to 'bench/bench.py')
-rw-r--r-- | bench/bench.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bench/bench.py b/bench/bench.py index 2acc29f..a839ed6 100644 --- a/bench/bench.py +++ b/bench/bench.py @@ -110,7 +110,9 @@ def timer(func, *args, **kw): return results def display(label, results): - total = reduce(lambda x, y: x+y, results, 0.0) + total = 0.0 + for r in results: + total += r print " %8.3f" % ((total * 1e6) / len(results)), ':', label for func in FunctionList: |