commit | 606e1e33efc31cc8aa5cf65472639e86783407a3 | [log] [tgz] |
---|---|---|
author | Zachary Turner <zturner@google.com> | Fri Oct 23 17:53:51 2015 +0000 |
committer | Zachary Turner <zturner@google.com> | Fri Oct 23 17:53:51 2015 +0000 |
tree | 05bd8cf08ce9c8b1ebcf1ddd7620888754de949b | |
parent | 3ad38749fd9327723ef4ee4aa47dfba1fc0757c8 [diff] [blame] |
Python3 - Wrap more statements in calls to list() llvm-svn: 251129
diff --git a/lldb/test/attic/tester.py b/lldb/test/attic/tester.py index 34a6ed1..5c1a237 100755 --- a/lldb/test/attic/tester.py +++ b/lldb/test/attic/tester.py
@@ -55,7 +55,7 @@ self.m_times[component] = list() self.m_times[component].append(e - self.m_start) def dumpStats(self): - for key in self.m_times.keys(): + for key in list(self.m_times.keys()): if len(self.m_times[key]): sampleMin = float('inf') sampleMax = float('-inf')