contextlib.ExitStack.enter_context()

enter_context(cm) Enters a new context manager and adds its __exit__() method to the callback stack. The return

2016-10-07 17:29:21
sys.prefix

sys.prefix A string giving the site-specific directory prefix where the platform independent Python files are installed; by

2016-10-07 17:43:56
warnings.simplefilter()

warnings.simplefilter(action, category=Warning, lineno=0, append=False) Insert a simple entry into the list of warnings

2016-10-07 17:47:12
traceback.print_tb()

traceback.print_tb(tb, limit=None, file=None) Print up to limit stack trace entries from traceback object tb

2016-10-07 17:45:11
fpectl.turnoff_sigfpe()

fpectl.turnoff_sigfpe() Reset default handling of floating point exceptions.

2016-10-07 17:33:16
traceback.format_exception_only()

traceback.format_exception_only(etype, value) Format the exception part of a traceback. The arguments are the exception type

2016-10-07 17:45:10
sys.getallocatedblocks()

sys.getallocatedblocks() Return the number of memory blocks currently allocated by the interpreter, regardless of their size

2016-10-07 17:43:50
traceback.FrameSummary

class traceback.FrameSummary(filename, lineno, name, lookup_line=True, locals=None, line=None) Represent a single frame in the

2016-10-07 17:45:10
traceback.format_list()

traceback.format_list(extracted_list) Given a list of tuples as returned by extract_tb() or extract_stack()

2016-10-07 17:45:10
sys.getdefaultencoding()

sys.getdefaultencoding() Return the name of the current default string encoding used by the Unicode implementation.

2016-10-07 17:43:50