[PATCH 08/10] qapi/schema: add __repr__ to QAPIDoc.Section

John Snow posted 10 patches 1 month, 1 week ago
[PATCH 08/10] qapi/schema: add __repr__ to QAPIDoc.Section
Posted by John Snow 1 month, 1 week ago
Makes debugging far more pleasant when you can just print(section) and
get something reasonable to display.

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

diff --git a/scripts/qapi/parser.py b/scripts/qapi/parser.py
index c3004aa70c6..617711b1f04 100644
--- a/scripts/qapi/parser.py
+++ b/scripts/qapi/parser.py
@@ -673,6 +673,9 @@ def __init__(
             # section text without tag
             self.text = ''
 
+        def __repr__(self) -> str:
+            return f"<QAPIDoc.Section kind={self.kind!r} text={self.text!r}>"
+
         def append_line(self, line: str) -> None:
             self.text += line + '\n'
 
@@ -687,6 +690,12 @@ def __init__(
             self.name = name
             self.member: Optional['QAPISchemaMember'] = None
 
+        def __repr__(self) -> str:
+            return (
+                f"<QAPIDoc.ArgSection kind={self.kind!r} "
+                f"name={self.name!r} text={self.text!r}>"
+            )
+
         def connect(self, member: 'QAPISchemaMember') -> None:
             self.member = member
 
-- 
2.48.1