From 723b4666b285a295550e07b175385617f41b7aac Mon Sep 17 00:00:00 2001 From: pompolic <pompolic@special-circumstanc.es> Date: Sat, 13 May 2023 22:24:38 +0200 Subject: [PATCH] (WIP) Add missing 'self' parameters --- gdb-port/parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gdb-port/parser.py b/gdb-port/parser.py index a9efd79..d8d53dc 100644 --- a/gdb-port/parser.py +++ b/gdb-port/parser.py @@ -361,8 +361,8 @@ class ParserStack: # checking self.committed will show if all the relevant allocations before revisiting the current stack frame have been committed. # - self.stack_events[self.committed] == current_event - def get_pending_allocations(): + def get_pending_allocations(self): return self.pending_allocs - def clear_pending_allocations(): + def clear_pending_allocations(self): self.pending_allocs = { self.arena_int : {} } -- GitLab