profile.Profile.dump_stats()
  • References/Python/Python/Debugging & Profiling

dump_stats(filename) Write the results of the current profile to filename.

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

break_anywhere(frame) This method checks if there is a breakpoint in the filename of the current frame.

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

faulthandler.dump_traceback_later(timeout, repeat=False, file=sys.stderr, exit=False) Dump the tracebacks of all threads, after

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

size Size of the memory block in bytes (int).

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

set_break(filename, lineno, temporary=0, cond, funcname) Set a new breakpoint. If the lineno line doesn’t exist for

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

class tracemalloc.Frame Frame of a traceback. The Traceback class is a sequence

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

set_next(frame) Stop on the next line in or below the given frame.

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

tracemalloc.get_traceback_limit() Get the maximum number of frames stored in the traceback of a trace. The

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

statistics(group_by: str, cumulative: bool=False) Get statistics as a sorted list of Statistic instances grouped

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

count Number of memory blocks (int).

2025-01-10 15:47:30