Skip to content
Snippets Groups Projects
Commit 27600986 authored by durin42's avatar durin42
Browse files

run-tests: use items() instead of iteritems()

This fixes the python3.5 build. We'll presumably want to build our own
helper function or use 2to3 for this on the main source tree, but for
run-tests we want a single-source version that works in 2.6 and 3.5.
parent 8fa3e995
No related branches found
No related tags found
No related merge requests found
......@@ -1711,7 +1711,7 @@
if e.errno != errno.ENOENT:
raise
return -1e9 # file does not exist, tell early
for kw, mul in slow.iteritems():
for kw, mul in slow.items():
if kw in f:
val *= mul
return val
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment