qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: John Snow
Subject: [PATCH 10/14] qapi/gen.py: Add __bool__ dunder method to QAPIGen
Date: Tue, 22 Sep 2020 17:17:58 -0400

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(+)

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
 
-- 
2.26.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]