You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhance error reporting by adding support for Python's ExceptionGroup (PEP 654). Improve clarity and usability of traceback outputs for grouped exceptions.
Problem
Currently, ExceptionGroup displays only a summary:
As a workaround, the following commit was added to Vedro: 4452a49. It disables pretty printing of ExceptionGroup in Python 3.11 and later, falling back to the default exception formatting.
Summary
Enhance error reporting by adding support for Python's
ExceptionGroup
(PEP 654). Improve clarity and usability of traceback outputs for grouped exceptions.Problem
Currently,
ExceptionGroup
displays only a summary:This lacks detailed information about sub-exceptions, making debugging challenging in scenarios with multiple errors.
Proposal
ExceptionGroup
output to show individual sub-exceptions with full tracebacks.Backward Compatibility Notes
ExceptionGroup
exceptions remain unaffected.The text was updated successfully, but these errors were encountered: