traceback
 

# Format and print Python stack traces


 Modules
                                                                                                                                                                                                                               
linecache
string
sys
types


 Functions
                                                                                                                                                                                                                               
_print(file, str='', terminator='\012')
no doc string
extract_stack(f=None, limit=None)
no doc string
extract_tb(tb, limit=None)
no doc string
format_exception(etype, value, tb, limit=None)
no doc string
format_exception_only(etype, value)
no doc string
format_list(extracted_list)
no doc string
format_stack(f=None, limit=None)
no doc string
format_tb(tb, limit=None)
no doc string
print_exc(limit=None, file=None)
no doc string
print_exception(etype, value, tb, limit=None, file=None)
no doc string
print_last(limit=None, file=None)
no doc string
print_list(extracted_list, file=None)
no doc string
print_stack(f=None, limit=None, file=None)
no doc string
print_tb(tb, limit=None, file=None)
no doc string
tb_lineno(tb)
# Calculate the correct line number of the traceback given in tb (even
# with -O on).
# Coded by Marc-Andre Lemburg from the example of PyCode_Addr2Line()
# in compile.c.
# Revised version by Jim Hugunin to work with JPython too.