Lines Matching refs:TracebackException
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:
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
726 cause = TracebackException(
747 context = TracebackException(
763 texc = TracebackException(
789 """Create a TracebackException from an exception."""
798 if isinstance(other, TracebackException):