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
PEP 654 introduced exception groups: "a combination of multiple unrelated exceptions". This changes how exceptions are handled by the user, where a new variation of the except keyword can be used as except*.
However, code block syntax highlighting does not support it yet, removing the coloring even from the except keyword itself:
try:
raiseExceptionGroup()
except*:
pass
The text was updated successfully, but these errors were encountered:
PEP 654 introduced exception groups: "a combination of multiple unrelated exceptions". This changes how exceptions are handled by the user, where a new variation of the
except
keyword can be used asexcept*
.However, code block syntax highlighting does not support it yet, removing the coloring even from the
except
keyword itself:The text was updated successfully, but these errors were encountered: