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

class timeit.Timer(stmt='pass', setup='pass', timer=, globals=None) Class for timing execution speed of small code snippets

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

runcall(func, *args, **kwds) Debug a single function call, and return its result.

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

canonic(filename) Auxiliary method for getting a filename in a canonical form, that is, as a case-normalized (on case-insensitive

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

timeit(number=1000000) Time number executions of the main statement. This executes the setup statement once, and then

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

get_file_breaks(filename) Return all breakpoints in filename, or an empty list if none are set.

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

do_clear(arg) Handle how a breakpoint must be removed when it is a temporary one. This method

2025-01-10 15:47:30