Searched refs:TracebackException (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_traceback.py | 2371 exc = traceback.TracebackException(*exc_info) 2392 self.exc = traceback.TracebackException.from_exception( 2409 exc_context = traceback.TracebackException(*exc_info_context) 2414 exc = traceback.TracebackException(*exc_info) 2417 exc_cause = traceback.TracebackException(Exception, cause, None) 2431 exc_context = traceback.TracebackException(*exc_info_context) 2435 exc = traceback.TracebackException(*exc_info) 2459 te = traceback.TracebackException(*exc_info) 2479 exc = traceback.TracebackException(*exc_info, compact=True) 2482 exc_cause = traceback.TracebackException(Exceptio [all...] |
/third_party/python/Lib/ |
H A D | traceback.py | 14 'FrameSummary', 'StackSummary', 'TracebackException', 124 te = TracebackException(type(value), value, tb, limit=limit, compact=True) 139 te = TracebackException(type(value), value, tb, limit=limit, compact=True) 159 te = TracebackException(type(value), value, None, compact=True) 638 class TracebackException: class 650 Use `from_exception` to create TracebackException instances from exception 651 objects, or the constructor to create TracebackException instances from 654 - :attr:`__cause__` A TracebackException of the original *__cause__*. 655 - :attr:`__context__` A TracebackException of the original *__context__*. 656 - :attr:`exceptions` For exception groups - a list of TracebackException [all...] |
/third_party/python/Lib/unittest/ |
H A D | result.py | 177 tb_e = traceback.TracebackException(
|
/third_party/python/Lib/unittest/test/ |
H A D | test_result.py | 13 class TracebackException: class in MockTraceback
|
Completed in 9 milliseconds