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
except* FooError as e: produces an ExceptionGroup with an empty message, so str(e) == " (1 sub-exception)" (or whatever other number). It'd be nice to detect this (including in f-strings), and recommend using the repr instead.
The text was updated successfully, but these errors were encountered:
except* FooError as e:
produces anExceptionGroup
with an empty message, sostr(e) == " (1 sub-exception)"
(or whatever other number). It'd be nice to detect this (including in f-strings), and recommend using the repr instead.The text was updated successfully, but these errors were encountered: