Python 3 doesn't have iteritems, use items (#4143)

This commit is contained in:
Adam J. Stewart
2017-05-05 16:21:15 -05:00
committed by GitHub
parent c3af901ac6
commit 6e23c31ad1
3 changed files with 5 additions and 5 deletions

View File

@@ -164,7 +164,7 @@ def determine_toolset(self, spec):
if spec.satisfies('@1.47:'):
toolsets['icpc'] += '-linux'
for cc, toolset in toolsets.iteritems():
for cc, toolset in toolsets.items():
if cc in self.compiler.cxx_names:
return toolset