Searched defs:format_exception (Results 1 - 4 of 4) sorted by relevance

/external/python/cpython2/Lib/
H A Dtraceback.py7 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
130 def format_exception(etype, value, tb, limit = None): function
242 return ''.join(format_exception(etype, value, tb, limit))
/external/python/cpython2/Lib/unittest/test/
H A Dtest_result.py367 def format_exception(*_): member in class:MockTraceback
/external/python/cpython3/Lib/
H A Dtraceback.py8 __all__ = ['extract_stack', 'extract_tb', 'format_exception',
94 # format_exception has ignored etype for some time, and code such as cgitb
104 def format_exception(etype, value, tb, limit=None, chain=True): function
113 # format_exception has ignored etype for some time, and code such as cgitb
163 return "".join(format_exception(*sys.exc_info(), limit=limit, chain=chain))
/external/autotest/client/common_lib/
H A Derror.py8 from traceback import format_exception namespace
18 trace = format_exception(t, o, tb)

Completed in 116 milliseconds