Removed breakpoint from heap.py (#2433)

pull/2437/head
Aadish Jain 1 year ago committed by GitHub
parent f492622924
commit 055e08cbcb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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.

Loading…
Cancel
Save