[Lldb-commits] [lldb] Add new Python API `SBCommandInterpreter::GetTranscript()` (PR #90703)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Thu May 2 11:26:29 PDT 2024


================
@@ -318,6 +318,12 @@ class SBCommandInterpreter {
 
   SBStructuredData GetStatistics();
 
+  /// Returns a list of handled commands, output and error. Each element in
+  /// the list is a dictionary with three keys: "command" (string), "output"
+  /// (list of strings) and optionally "error" (list of strings). Each string
+  /// in "output" and "error" is a line (without EOL characteres).
----------------
bulbazord wrote:

typo: `characteres` -> `characters`

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


More information about the lldb-commits mailing list