tracemalloc.get_traceback_limit()

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

2016-10-07 17:45:15
pdb.Pdb

class pdb.Pdb(completekey='tab', stdin=None, stdout=None, skip=None, nosigint=False) Pdb is the debugger class

2016-10-07 17:40:36
bdb.Bdb.format_stack_entry()

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

2016-10-07 17:27:24
pstats.Stats.reverse_order()

reverse_order() This method for the Stats class reverses the ordering of the basic list within the object. Note

2016-10-07 17:40:59
timeit.Timer

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

2016-10-07 17:44:45
tracemalloc.Snapshot.dump()

dump(filename) Write the snapshot into a file. Use load() to reload the snapshot

2016-10-07 17:45:16
pdb.run()

pdb.run(statement, globals=None, locals=None) Execute the statement (given as a string or a code object) under debugger

2016-10-07 17:40:37
tracemalloc.StatisticDiff

class tracemalloc.StatisticDiff Statistic difference on memory allocations between an old and a new Snapshot instance

2016-10-07 17:45:18
bdb.Bdb.set_continue()

set_continue() Stop only at breakpoints or when finished. If there are no breakpoints, set the system trace function to None

2016-10-07 17:27:26
bdb.Bdb.set_quit()

set_quit() Set the quitting attribute to True. This raises BdbQuit in the next call to

2016-10-07 17:27:26