Searched refs:TracebackException (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Lib/test/ |
D | test_traceback.py | 1167 exc = traceback.TracebackException(*exc_info) 1188 self.exc = traceback.TracebackException.from_exception( 1205 exc_context = traceback.TracebackException(*exc_info_context) 1210 exc = traceback.TracebackException(*exc_info) 1213 exc_cause = traceback.TracebackException(Exception, cause, None) 1227 exc_context = traceback.TracebackException(*exc_info_context) 1231 exc = traceback.TracebackException(*exc_info) 1255 te = traceback.TracebackException(*exc_info) 1275 exc = traceback.TracebackException(*exc_info, compact=True) 1278 exc_cause = traceback.TracebackException(Exception, cause, None) [all …]
|
/third_party/python/Lib/ |
D | traceback.py | 119 te = TracebackException(type(value), value, tb, limit=limit, compact=True) 135 te = TracebackException(type(value), value, tb, limit=limit, compact=True) 155 te = TracebackException(type(value), value, None, compact=True) 457 class TracebackException: class 533 cause = TracebackException( 552 context = TracebackException( 580 if isinstance(other, TracebackException):
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a5.rst | 234 Use :class:`~traceback.TracebackException`'s new ``compact`` param in 268 :class:`traceback.TracebackException` to reduce time and memory for use 269 cases that only need to call :func:`TracebackException.format` and 270 :func:`TracebackException.format_exception_only`. 289 Removed recursion from :class:`~traceback.TracebackException` to allow it to
|
D | 3.10.0a3.rst | 342 :class:`~traceback.TracebackException` no longer holds a reference to the 343 exception's traceback object. Consequently, instances of TracebackException
|
/third_party/python/Doc/library/ |
D | traceback.rst | 207 :class:`TracebackException` Objects 212 :class:`TracebackException` objects are created from actual exceptions to 215 .. class:: TracebackException(exc_type, exc_value, exc_traceback, *, limit=None, lookup_lines=True,… 220 If *compact* is true, only data that is required by :class:`TracebackException`'s 229 A :class:`TracebackException` of the original ``__cause__``. 233 A :class:`TracebackException` of the original ``__context__``.
|
/third_party/python/Lib/unittest/ |
D | result.py | 185 tb_e = traceback.TracebackException(
|
/third_party/python/Lib/unittest/test/ |
D | test_result.py | 13 class TracebackException: class in MockTraceback
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 1953 New lightweight classes: :class:`~traceback.TracebackException`,
|