debugger icon indicating copy to clipboard operation
debugger copied to clipboard

Better __repr__ implementation of the Python debugger objects

Open xusheng6 opened this issue 3 years ago • 0 comments

Currently, if we print the various Python debugger objects, many of them do not give us any interesting information. For example,

>>> dbg

<debugger.debuggercontroller.DebuggerController object at 0x113e5c5b0>

We should give more information about the object.

Here is a list of the objects that we need to improve:

  • [ ] DebuggerController
  • [ ] DebugBreakpoint
  • [ ] DebugThread
  • [ ] DebugModule
  • [x] DebugRegister
  • [ ] DebugFrame
  • [ ] DebugEvent
  • [ ] etc

xusheng6 avatar Nov 09 '22 10:11 xusheng6