diff mbox series

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

Message ID 20250224033741.222749-9-jsnow@redhat.com (mailing list archive)
State New
Headers show
Series qapi: misc testing and doc patches | expand

Commit Message

John Snow Feb. 24, 2025, 3:37 a.m. UTC
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 mbox series

Patch

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