Searched refs:TracebackException (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_traceback.py | 1032 exc = traceback.TracebackException(*exc_info) 1053 self.exc = traceback.TracebackException.from_exception( 1070 exc_context = traceback.TracebackException(*exc_info_context) 1075 exc = traceback.TracebackException(*exc_info) 1078 exc_cause = traceback.TracebackException(Exception, cause, None) 1092 exc_context = traceback.TracebackException(*exc_info_context) 1096 exc = traceback.TracebackException(*exc_info) 1114 exc = traceback.TracebackException(*exc_info) 1123 exc = traceback.TracebackException(*exc_info) 1124 exc2 = traceback.TracebackException(*exc_info) [all …]
|
/external/python/cpython3/Lib/ |
D | traceback.py | 103 for line in TracebackException( 120 return list(TracebackException( 140 return list(TracebackException(etype, value, None).format_exception_only()) 440 class TracebackException: class 481 cause = TracebackException( 493 context = TracebackException( 540 if isinstance(other, TracebackException):
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.1.rst | 62 :class:`~traceback.TracebackException` no longer holds a reference to the 63 exception's traceback object. Consequently, instances of TracebackException
|
/external/python/cpython3/Doc/library/ |
D | traceback.rst | 186 :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/ |
D | result.py | 185 tb_e = traceback.TracebackException(
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_result.py | 12 class TracebackException: class in MockTraceback
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 1953 New lightweight classes: :class:`~traceback.TracebackException`,
|