From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54720) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1domaN-000449-MS for qemu-devel@nongnu.org; Mon, 04 Sep 2017 04:18:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1domaJ-0001e5-MW for qemu-devel@nongnu.org; Mon, 04 Sep 2017 04:18:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49560) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1domaJ-0001db-GH for qemu-devel@nongnu.org; Mon, 04 Sep 2017 04:18:19 -0400 Date: Mon, 4 Sep 2017 04:18:16 -0400 (EDT) From: =?utf-8?Q?Marc-Andr=C3=A9?= Lureau Message-ID: <1370708666.8057957.1504513096437.JavaMail.zimbra@redhat.com> In-Reply-To: <87d17axvtx.fsf@dusky.pond.sub.org> References: <20170822132255.23945-1-marcandre.lureau@redhat.com> <20170822132255.23945-15-marcandre.lureau@redhat.com> <87d17axvtx.fsf@dusky.pond.sub.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v2 14/54] qapi2texi: minor python code simplification List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Markus Armbruster Cc: qemu-devel@nongnu.org, Michael Roth Hi ----- Original Message ----- > Marc-Andr=C3=A9 Lureau writes: >=20 > > Signed-off-by: Marc-Andr=C3=A9 Lureau > > --- > > scripts/qapi2texi.py | 7 +++---- > > 1 file changed, 3 insertions(+), 4 deletions(-) > > > > diff --git a/scripts/qapi2texi.py b/scripts/qapi2texi.py > > index a317526e51..8b542f9fff 100755 > > --- a/scripts/qapi2texi.py > > +++ b/scripts/qapi2texi.py > > @@ -136,10 +136,9 @@ def texi_enum_value(value): > > def texi_member(member, suffix=3D''): > > """Format a table of members item for an object type member""" > > typ =3D member.type.doc_type() > > - return '@item @code{%s%s%s}%s%s\n' % ( > > - member.name, > > - ': ' if typ else '', > > - typ if typ else '', > > + membertype =3D ': %s' % typ if typ else '' >=20 > I'd use string concatenation (': ' + typ) instead of interpolation. > Matter of taste. Could make the change when I apply. Good idea >=20 > > + return '@item @code{%s%s}%s%s\n' % ( > > + member.name, membertype, > > ' (optional)' if member.optional else '', > > suffix) >=20 > Reviewed-by: Markus Armbruster >=20 thanks