From 055e08cbcbdb3860f9b5301ad33407b148a05f05 Mon Sep 17 00:00:00 2001 From: Aadish Jain Date: Sun, 15 Sep 2024 17:38:45 +0530 Subject: [PATCH] Removed breakpoint from heap.py (#2433) --- pwndbg/aglib/heap/heap.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/pwndbg/aglib/heap/heap.py b/pwndbg/aglib/heap/heap.py index a0bf57223..134fbac48 100644 --- a/pwndbg/aglib/heap/heap.py +++ b/pwndbg/aglib/heap/heap.py @@ -12,16 +12,6 @@ class MemoryAllocator: # Debugger-agnostic API gains the ability to set breakpoints. # # TODO: Change `Any` to the Debugger-agnostic breakpoint type when it gets created - def breakpoint(self, event: str) -> Any: - """Enables breakpoints on the specific event. - - Arguments: - event(str): One of 'alloc','realloc','free' - - Returns: - A gdb.Breakpoint object. - """ - raise NotImplementedError() def summarize(self, address: int, **kwargs: Any) -> str: """Returns a textual summary of the specified address.