bdb.Breakpoint.deleteMe()
  • References/Python/Python/Debugging & Profiling

deleteMe() Delete the breakpoint from the list associated to a file/line. If it is the last breakpoint in that position, it

2025-01-10 15:47:30
bdb.Bdb.user_line()
  • References/Python/Python/Debugging & Profiling

user_line(frame) This method is called from dispatch_line() when either stop_here() or break_here()

2025-01-10 15:47:30
profile.Profile.run()
  • References/Python/Python/Debugging & Profiling

run(cmd) Profile the cmd via

2025-01-10 15:47:30
faulthandler.is_enabled()
  • References/Python/Python/Debugging & Profiling

faulthandler.is_enabled() Check if the fault handler is enabled.

2025-01-10 15:47:30
trace.Trace
  • References/Python/Python/Debugging & Profiling

class trace.Trace(count=1, trace=1, countfuncs=0, countcallers=0, ignoremods=(), ignoredirs=(), infile=None, outfile=None, timing=False)

2025-01-10 15:47:30
profile.Profile.runcall()
  • References/Python/Python/Debugging & Profiling

runcall(func, *args, **kwargs) Profile func(*args, **kwargs)

2025-01-10 15:47:30
tracemalloc.Statistic
  • References/Python/Python/Debugging & Profiling

class tracemalloc.Statistic Statistic on memory allocations. Snapshot.statistics()

2025-01-10 15:47:30
bdb.Bdb.set_step()
  • References/Python/Python/Debugging & Profiling

set_step() Stop after one line of code.

2025-01-10 15:47:30
bdb.Bdb.reset()
  • References/Python/Python/Debugging & Profiling

reset() Set the botframe, stopframe, returnframe and quitting attributes

2025-01-10 15:47:30
bdb.Bdb.user_return()
  • References/Python/Python/Debugging & Profiling

user_return(frame, return_value) This method is called from dispatch_return() when stop_here() yields

2025-01-10 15:47:30