Skip to content
New issue

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

return in finally swallows exceptions #294

Open
iritkatriel opened this issue Oct 24, 2024 · 1 comment
Open

return in finally swallows exceptions #294

iritkatriel opened this issue Oct 24, 2024 · 1 comment

Comments

@iritkatriel
Copy link

In


and
return super(EventSift, self).__call__(event)

there is a return statement in a finally block, which would swallow any in-flight exception.

This means that if any exception (including BaseException such as KeyboardInterrupt) is raised from the try body, it will not propagate on as expected.

See also https://docs.python.org/3/tutorial/errors.html#defining-clean-up-actions.

@fabioz
Copy link
Owner

fabioz commented Oct 28, 2024

Hi @iritkatriel, thank you for the issue report... now, this will likely not be fixed in pydevd because that code isn't really used...

At this point just a teeny-tiny bit of winappdbg is actually used in pydevd (some win32 wrapping in the attach to process to inject a dll into the target process), and I think 99% of the code could be removed -- at this point it'd probably make sense to just port over the needed definitions and remove everything else, but this takes time and ends up being very much low priority vs other things, so, not sure if it'll ever be done -- I accept PRs though ;)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants