traceback.format_exception_only(etype, value) Format the exception part of a traceback. The arguments are the exception type
fpectl.turnoff_sigfpe() Reset default handling of floating point exceptions.
apply_defaults() Set default values for missing arguments. For variable-positional arguments
inspect.iscoroutinefunction(object) Return true if the object is a coroutine function
traceback.print_tb(tb, limit=None, file=None) Print up to limit stack trace entries from traceback object tb
sys.getdefaultencoding() Return the name of the current default string encoding used by the Unicode implementation.
sys.settrace(tracefunc) Set the system’s trace function, which allows you to implement a Python source code debugger in Python
sys.base_exec_prefix Set during Python startup, before site.py is run, to the same value as exec_prefix
traceback.format_list(extracted_list) Given a list of tuples as returned by extract_tb() or extract_stack()
exception fpectl.FloatingPointError After turnon_sigfpe() has been executed, a floating point operation that raises
Page 3 of 26