diff mbox series

[10/14] qapi/gen.py: Add __bool__ dunder method to QAPIGen

Message ID 20200922211802.4083666-11-jsnow@redhat.com
State New
Headers show
Series qapi: static typing conversion, pt3 | expand

Commit Message

John Snow Sept. 22, 2020, 9:17 p.m. UTC
Falseish when there is no body or preamble; Trueish when there is.
Header and footer are excluded for now, because they are assumed to be
dynamic and always present.

Signed-off-by: John Snow <jsnow@redhat.com>
---
 scripts/qapi/gen.py | 3 +++
 1 file changed, 3 insertions(+)

Comments

Eduardo Habkost Sept. 23, 2020, 9:05 p.m. UTC | #1
On Tue, Sep 22, 2020 at 05:17:58PM -0400, John Snow wrote:
> Falseish when there is no body or preamble; Trueish when there is.
> Header and footer are excluded for now, because they are assumed to be
> dynamic and always present.
> 
> Signed-off-by: John Snow <jsnow@redhat.com>

Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
diff mbox series

Patch

diff --git a/scripts/qapi/gen.py b/scripts/qapi/gen.py
index ed498397ad..892d7d772e 100644
--- a/scripts/qapi/gen.py
+++ b/scripts/qapi/gen.py
@@ -40,6 +40,9 @@  def __init__(self, fname: Optional[str]):
         self._preamble = ''
         self._body = ''
 
+    def __bool__(self) -> bool:
+        return bool(self._preamble or self._body)
+
     def preamble_add(self, text: str) -> None:
         self._preamble += text