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
{{ message }}
This repository has been archived by the owner on Nov 2, 2022. It is now read-only.
The old MultiError code didn't have to worry about this, because of unwrapping, but we do. If a program terminates with an ExceptionGroup that consists of only SystemExit exceptions, then it should terminate silently.
The text was updated successfully, but these errors were encountered:
Oh, and we have to handle the argument correctly, which can either be an integer exit code, or a string to print. This might be tricky for multiple SystemExits in the same group... Which is probably fine, that's a weird edge case anyway, we just have to decide what to do with it. The main thing is that this should work as expected:
The old
MultiError
code didn't have to worry about this, because of unwrapping, but we do. If a program terminates with anExceptionGroup
that consists of onlySystemExit
exceptions, then it should terminate silently.The text was updated successfully, but these errors were encountered: