aboutsummaryrefslogtreecommitdiff
path: root/crosperf/results_organizer.py
diff options
context:
space:
mode:
Diffstat (limited to 'crosperf/results_organizer.py')
-rw-r--r--crosperf/results_organizer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/crosperf/results_organizer.py b/crosperf/results_organizer.py
index 4879caeb..674745fb 100644
--- a/crosperf/results_organizer.py
+++ b/crosperf/results_organizer.py
@@ -80,7 +80,7 @@ def _GetNonDupLabel(max_dup, runs):
# pylint: disable=cell-var-from-loop
added_runs = _Repeat(
lambda: _DictWithReturnValues(run_retval, run_pass_fail), max_dup)
- for key, value in run.iteritems():
+ for key, value in run.items():
match = _DUP_KEY_REGEX.match(key)
if not match:
new_run[key] = value
@@ -94,7 +94,7 @@ def _GetNonDupLabel(max_dup, runs):
def _DuplicatePass(result, benchmarks):
"""Properly expands keys like `foo{1}` in `result`."""
- for bench, data in result.iteritems():
+ for bench, data in result.items():
max_dup = _GetMaxDup(data)
# If there's nothing to expand, there's nothing to do.
if not max_dup: