But on lates jupyter console 6.6.3 (also qtconsole) it shows as:
In [1]: eg = ExceptionGroup('foo', [TypeError(10), ValueError(20)])
In [2]: raise eg
---------------------------------------------------------------------------
ExceptionGroup Traceback (most recent call last)
Cell In[2], line 1
----> 1 raise eg
ExceptionGroup: foo (2 sub-exceptions)
According to PEP 654 you have to recursively go through the ExceptionGroup.exceptions and display them all which can include more exception groups.
Side note. If you type ExceptionG<tab>, or Ex<tab><tab> it will not autocomplete the name ExceptionGroup. It will though autocomplete Exception at the 1st <tab>... Something to check why
Python3.11 added the concept of exception groups and this is how the traceback is displayed on normal Python console:
But on lates jupyter console 6.6.3 (also qtconsole) it shows as:
According to PEP 654 you have to recursively go through the
ExceptionGroup.exceptions
and display them all which can include more exception groups.Side note. If you type
ExceptionG<tab>
, orEx<tab><tab>
it will not autocomplete the name ExceptionGroup. It will though autocomplete Exception at the 1st<tab>
... Something to check why