All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH] qapi: cleanup redundant variable
@ 2014-01-23  8:54 ` Amos Kong
  0 siblings, 0 replies; 6+ messages in thread
From: Amos Kong @ 2014-01-23  8:54 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, eblake

No need to re-append an expr list, it's ok to return schema.exprs

Signed-off-by: Amos Kong <akong@redhat.com>
---
 scripts/qapi.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/scripts/qapi.py b/scripts/qapi.py
index 7b92689..718f1ad 100644
--- a/scripts/qapi.py
+++ b/scripts/qapi.py
@@ -175,8 +175,6 @@ def parse_schema(fp):
         print >>sys.stderr, e
         exit(1)
 
-    exprs = []
-
     for expr in schema.exprs:
         if expr.has_key('enum'):
             add_enum(expr['enum'])
@@ -185,9 +183,8 @@ def parse_schema(fp):
             add_enum('%sKind' % expr['union'])
         elif expr.has_key('type'):
             add_struct(expr)
-        exprs.append(expr)
 
-    return exprs
+    return schema.exprs
 
 def parse_args(typeinfo):
     if isinstance(typeinfo, basestring):
-- 
1.8.4.2



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-02-03 18:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-23  8:54 [Qemu-trivial] [PATCH] qapi: cleanup redundant variable Amos Kong
2014-01-23  8:54 ` [Qemu-devel] " Amos Kong
2014-02-01  9:49 ` [Qemu-trivial] " Michael Tokarev
2014-02-01  9:49   ` [Qemu-devel] " Michael Tokarev
2014-02-03 18:23   ` Eric Blake
2014-02-03 18:23     ` [Qemu-devel] " Eric Blake

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.