We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in
multiprocess/py3.9/multiprocess/connection.py
Line 314 in 1411ef0
return
finally
This means that if an exception is raised in the try block, and then re-raised from the except: block, it will not propagate on as expected.
try
except:
See also https://docs.python.org/3/tutorial/errors.html#defining-clean-up-actions.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in
multiprocess/py3.9/multiprocess/connection.py
Line 314 in 1411ef0
return
statements in afinally
block, which would swallow any in-flight exception.This means that if an exception is raised in the
try
block, and then re-raised from theexcept:
block, it will not propagate on as expected.See also https://docs.python.org/3/tutorial/errors.html#defining-clean-up-actions.
The text was updated successfully, but these errors were encountered: