tracemalloc.Snapshot.dump()

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

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

pdb.runeval(expression, globals=None, locals=None) Evaluate the expression (given as a string or a code object) under

2016-10-07 17:40:38
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
faulthandler.register()

faulthandler.register(signum, file=sys.stderr, all_threads=True, chain=False) Register a user signal: install a handler for

2016-10-07 17:33:05
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
pstats.Stats.dump_stats()

dump_stats(filename) Save the data loaded into the Stats object to a file named filename. The file is

2016-10-07 17:40:59
bdb.Bdb.set_trace()

set_trace([frame]) Start debugging from frame. If frame is not specified, debugging starts from caller’s frame

2016-10-07 17:27:27
trace.Trace.run()

run(cmd) Execute the command and gather statistics from the execution with the current tracing parameters. cmd must

2016-10-07 17:45:08
tracemalloc.take_snapshot()

tracemalloc.take_snapshot() Take a snapshot of traces of memory blocks allocated by Python. Return a new Snapshot

2016-10-07 17:45:19
tracemalloc.Filter

class tracemalloc.Filter(inclusive: bool, filename_pattern: str, lineno: int=None, all_frames: bool=False) Filter on traces

2016-10-07 17:45:14