summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Node/Alias.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 /src/engine/SCons/Node/Alias.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 'src/engine/SCons/Node/Alias.py')
-rw-r--r--src/engine/SCons/Node/Alias.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Node/Alias.py b/src/engine/SCons/Node/Alias.py
index f229a9f..a035816 100644
--- a/src/engine/SCons/Node/Alias.py
+++ b/src/engine/SCons/Node/Alias.py
@@ -89,7 +89,7 @@ class AliasNodeInfo(SCons.Node.NodeInfoBase):
"""
# TODO check or discard version
del state['_version_id']
- for key, value in list(state.items()):
+ for key, value in state.items():
if key not in ('__weakref__',):
setattr(self, key, value)