Home
last modified time | relevance | path

Searched refs:TracebackException (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_traceback.py1007 exc = traceback.TracebackException(*exc_info)
1028 self.exc = traceback.TracebackException.from_exception(
1045 exc_context = traceback.TracebackException(*exc_info_context)
1050 exc = traceback.TracebackException(*exc_info)
1053 exc_cause = traceback.TracebackException(Exception, cause, None)
1067 exc_context = traceback.TracebackException(*exc_info_context)
1071 exc = traceback.TracebackException(*exc_info)
1095 exc = traceback.TracebackException(*exc_info)
1110 exc = traceback.TracebackException(*exc_info, limit=5)
1121 exc = traceback.TracebackException(Exception, e, tb, lookup_lines=False)
[all …]
/external/python/cpython3/Lib/
Dtraceback.py103 for line in TracebackException(
120 return list(TracebackException(
140 return list(TracebackException(etype, value, None).format_exception_only())
437 class TracebackException: class
478 cause = TracebackException(
490 context = TracebackException(
/external/python/cpython3/Doc/library/
Dtraceback.rst186 :class:`TracebackException` Objects
191 :class:`TracebackException` objects are created from actual exceptions to
194 .. class:: TracebackException(exc_type, exc_value, exc_traceback, *, limit=None, lookup_lines=True,…
203 A :class:`TracebackException` of the original ``__cause__``.
207 A :class:`TracebackException` of the original ``__context__``.
/external/python/cpython3/Lib/unittest/
Dresult.py185 tb_e = traceback.TracebackException(
/external/python/cpython3/Lib/unittest/test/
Dtest_result.py12 class TracebackException: class in MockTraceback
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1953 New lightweight classes: :class:`~traceback.TracebackException`,