:class:`TracebackException` objects are created from actual exceptions to
capture data for later printing in a lightweight fashion.
-.. class:: TracebackException(exc_type, exc_value, exc_traceback, *, limit=None, lookup_lines=True, capture_locals=False, compact=False)
+.. class:: TracebackException(exc_type, exc_value, exc_traceback, *, limit=None, lookup_lines=True, capture_locals=False, compact=False, max_group_width=15, max_group_depth=10)
Capture an exception for later rendering. *limit*, *lookup_lines* and
*capture_locals* are as for the :class:`StackSummary` class.
Note that when locals are captured, they are also shown in the traceback.
+ *max_group_width* and *max_group_depth* control the formatting of exception
+ groups (see :exc:`BaseExceptionGroup`). The depth refers to the nesting
+ level of the group, and the width refers to the size of a single exception
+ group's exceptions array. The formatted output is truncated when either
+ limit is exceeded.
+
.. attribute:: __cause__
A :class:`TracebackException` of the original ``__cause__``.
A :class:`TracebackException` of the original ``__context__``.
+ .. attribute:: exceptions
+
+ If ``self`` represents an :exc:`ExceptionGroup`, this field holds a list of
+ :class:`TracebackException` instances representing the nested exceptions.
+ Otherwise it is ``None``.
+
+ .. versionadded:: 3.11
+
.. attribute:: __suppress_context__
The ``__suppress_context__`` value from the original exception.
.. versionchanged:: 3.10
Added the *compact* parameter.
+ .. versionchanged:: 3.11
+ Added the *max_group_width* and *max_group_depth* parameters.
+
:class:`StackSummary` Objects
-----------------------------
- :attr:`__cause__` A TracebackException of the original *__cause__*.
- :attr:`__context__` A TracebackException of the original *__context__*.
+ - :attr:`exceptions` For exception groups - a list of TracebackException
+ instances for the nested *exceptions*. ``None`` for other exceptions.
- :attr:`__suppress_context__` The *__suppress_context__* value from the
original exception.
- :attr:`stack` A `StackSummary` representing the traceback.