Skip to content

Commit

Permalink
qapi: use items()/values() intead of iteritems()/itervalues()
Browse files Browse the repository at this point in the history
The iteritems()/itervalues() methods are gone in py3, but the
items()/values() methods are still around. The latter are less
efficient than the former in py2, but this has unmeasurably
small impact on QEMU build time, so taking portability over
efficiency is a net win.

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-Id: <20180116134217.8725-3-berrange@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
  • Loading branch information
berrange authored and ehabkost committed Feb 5, 2018
1 parent ef9d910 commit 2f84804
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions scripts/qapi.py
Expand Up @@ -245,7 +245,7 @@ def check_expr(self, expr):
"'Returns:' is only valid for commands")

def check(self):
bogus = [name for name, section in self.args.iteritems()
bogus = [name for name, section in self.args.items()
if not section.member]
if bogus:
raise QAPISemError(
Expand Down Expand Up @@ -300,7 +300,7 @@ def __init__(self, fp, previously_included=[], incl_info=None):
if not isinstance(pragma, dict):
raise QAPISemError(
info, "Value of 'pragma' must be a dictionary")
for name, value in pragma.iteritems():
for name, value in pragma.items():
self._pragma(name, value, info)
else:
expr_elem = {'expr': expr,
Expand Down Expand Up @@ -1566,7 +1566,7 @@ def _make_member(self, name, typ, info):

def _make_members(self, data, info):
return [self._make_member(key, value, info)
for (key, value) in data.iteritems()]
for (key, value) in data.items()]

def _def_struct_type(self, expr, info, doc):
name = expr['struct']
Expand Down Expand Up @@ -1598,11 +1598,11 @@ def _def_union_type(self, expr, info, doc):
name, info, doc, 'base', self._make_members(base, info)))
if tag_name:
variants = [self._make_variant(key, value)
for (key, value) in data.iteritems()]
for (key, value) in data.items()]
members = []
else:
variants = [self._make_simple_variant(key, value, info)
for (key, value) in data.iteritems()]
for (key, value) in data.items()]
typ = self._make_implicit_enum_type(name, info,
[v.name for v in variants])
tag_member = QAPISchemaObjectTypeMember('type', typ, False)
Expand All @@ -1617,7 +1617,7 @@ def _def_alternate_type(self, expr, info, doc):
name = expr['alternate']
data = expr['data']
variants = [self._make_variant(key, value)
for (key, value) in data.iteritems()]
for (key, value) in data.items()]
tag_member = QAPISchemaObjectTypeMember('type', 'QType', False)
self._def_entity(
QAPISchemaAlternateType(name, info, doc,
Expand Down
2 changes: 1 addition & 1 deletion scripts/qapi2texi.py
Expand Up @@ -146,7 +146,7 @@ def texi_member(member, suffix=''):
def texi_members(doc, what, base, variants, member_func):
"""Format the table of members"""
items = ''
for section in doc.args.itervalues():
for section in doc.args.values():
# TODO Drop fallbacks when undocumented members are outlawed
if section.text:
desc = texi_format(section.text)
Expand Down
2 changes: 1 addition & 1 deletion tests/qapi-schema/test-qapi.py
Expand Up @@ -63,7 +63,7 @@ def _print_variants(variants):
else:
print('doc freeform')
print(' body=\n%s' % doc.body.text)
for arg, section in doc.args.iteritems():
for arg, section in doc.args.items():
print(' arg=%s\n%s' % (arg, section.text))
for section in doc.sections:
print(' section=%s\n%s' % (section.name, section.text))

0 comments on commit 2f84804

Please sign in to comment.