Author: Maciej Fijalkowski <[email protected]>
Branch: single-run
Changeset: r323:cd369a185e0a
Date: 2015-04-08 11:53 +0200
http://bitbucket.org/pypy/benchmarks/changeset/cd369a185e0a/
Log: events is a list not a dict
diff --git a/runner.py b/runner.py
--- a/runner.py
+++ b/runner.py
@@ -27,7 +27,7 @@
for t in dict['times']:
runs.append({"start_timestamp": cur_time, "duration": t})
cur_time += t
- r.append({"name": bench, "runs": runs, "events": {}})
+ r.append({"name": bench, "runs": runs, "events": []})
return r
def run_and_store(benchmark_set, result_filename, path, revision=0,
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit