[Lldb-commits] [lldb] [lldb] Add bidirectional packetLog to gdbclientutils.py (PR #162176)

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 8 03:48:55 PDT 2025


================
@@ -306,7 +309,8 @@ def haltReason(self):
         # SIGINT is 2, return type is 2 digit hex string
         return "S02"
 
-    def qXferRead(self, obj, annex, offset, length):
+    def qXferRead(self, obj: str, annex: str, offset: int,
+                  length: int) -> tuple[str | None, bool]:
----------------
DavidSpickett wrote:

In future please separate annotations of existing types into their own PR. If you're changing the type in the process of doing something then it's fine to include in the same PR.

https://github.com/llvm/llvm-project/pull/162176


More information about the lldb-commits mailing list