tracemalloc.is_tracing()
  • References/Python/Python/Debugging & Profiling

tracemalloc.is_tracing() True if the tracemalloc module is tracing Python memory allocations, False

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.Filter.inclusive
  • References/Python/Python/Debugging & Profiling

inclusive If inclusive is True (include), only trace memory blocks allocated in a file with a name matching

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

pdb.post_mortem(traceback=None) Enter post-mortem debugging of the given traceback object. If no traceback

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

trace_dispatch(frame, event, arg) This function is installed as the trace function of debugged frames. Its return value is the

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
bdb.Bdb.format_stack_entry()
  • References/Python/Python/Debugging & Profiling

format_stack_entry(frame_lineno, lprefix=': ') Return a string with information about a stack entry, identified by a (frame

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
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
trace.CoverageResults
  • References/Python/Python/Debugging & Profiling

class trace.CoverageResults A container for coverage results, created by Trace.results(). Should not be created

2025-01-10 15:47:30