summaryrefslogtreecommitdiffstats
path: root/QMTest/scons_tdb.py
diff options
context:
space:
mode:
authorCraig Rodrigues <rodrigc@FreeBSD.org>2017-03-12 02:46:09 (GMT)
committerCraig Rodrigues <rodrigc@FreeBSD.org>2017-03-12 02:46:09 (GMT)
commit056622b43309af38e4b6dcbbdcdd0e7b9b176a0d (patch)
tree462a54045bb7f37948fb4404fed7a33579bc0b07 /QMTest/scons_tdb.py
parent055c8046afce036fdfad4bc8d60e4059da148f7d (diff)
downloadSCons-056622b43309af38e4b6dcbbdcdd0e7b9b176a0d.zip
SCons-056622b43309af38e4b6dcbbdcdd0e7b9b176a0d.tar.gz
SCons-056622b43309af38e4b6dcbbdcdd0e7b9b176a0d.tar.bz2
When iterating over dict.items(), we do not need a new list.
Diffstat (limited to 'QMTest/scons_tdb.py')
-rw-r--r--QMTest/scons_tdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/QMTest/scons_tdb.py b/QMTest/scons_tdb.py
index f5c0ae5..76c7fe1 100644
--- a/QMTest/scons_tdb.py
+++ b/QMTest/scons_tdb.py
@@ -92,7 +92,7 @@ def get_explicit_arguments(e):
# Determine which subset of the 'arguments' have been set
# explicitly.
explicit_arguments = {}
- for name, field in list(arguments.items()):
+ for name, field in arguments.items():
# Do not record computed fields.
if field.IsComputed():
continue