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

disable() Mark the breakpoint as disabled.

2025-01-10 15:47:30
pdb.Pdb.runeval()
  • References/Python/Python/Debugging & Profiling

runeval(expression, globals=None, locals=None) runcall(function, *args, **kwds) set_trace()

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

pdb.runcall(function, *args, **kwds) Call the function (a function or method object, not a string) with the given arguments

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

faulthandler.enable(file=sys.stderr, all_threads=True) Enable the fault handler: install handlers for the SIGSEGV

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

clear_break(filename, lineno) Delete the breakpoints in filename and lineno. If none were set, an error message

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

traceback_limit Maximum number of frames stored in the traceback of traces: result of the get_traceback_limit()

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

bdb.effective(file, line, frame) Determine if there is an effective (active) breakpoint at this line of code. Return a tuple

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

count Number of memory blocks in the new snapshot (int): 0 if the memory blocks have been released

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

faulthandler.dump_traceback(file=sys.stderr, all_threads=True) Dump the tracebacks of all threads into file. If all_threads

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

filename Filename (str).

2025-01-10 15:47:30