From d95025d78223fcb2b36fdbce65288ef6ece6ba90 Mon Sep 17 00:00:00 2001 From: pompolic <pompolic@special-circumstanc.es> Date: Fri, 14 Apr 2023 23:54:21 +0200 Subject: [PATCH] Minor readability fix --- gdb-port/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb-port/parser.py b/gdb-port/parser.py index 4b9e944..cfcb3c4 100644 --- a/gdb-port/parser.py +++ b/gdb-port/parser.py @@ -343,7 +343,7 @@ class ParserStack: print("commit_at_pop: self.committed:", self.committed) # DEBUG print("commit_at_pop: ev_list:", ev_list) # DEBUG print("commit_at_pop: current_parser:", current_parser) # DEBUG - print("commit_at_pop: current_event:", current_event) # DEBUG + print("commit_at_pop: current_event:", (current_event[0], current_event[1], hex(current_event[2].address))) # DEBUG # We assume that there is either a string of "push" events before current event, or ev_list only contains the current event # This is because if there were a "pop" event, it'd have triggered a commit already, moving self.committed up to its index -- GitLab