-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. #8159
bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. #8159
Conversation
…ITH. This will prevent emitting a resource warning when the execution was interrupted by Ctrl-C between calling open() and entering a 'with' block in "with open()".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this works. At least for the NEWS.d entry situation of with open(...) as f:
. If the context manager's __enter__
is implemented in Python, evaluation of its own bytecode could process pending interrupts and lead to an exception being raised before it can setup its try: finally: handler (unless the __enter__
callable's very first opcode is SETUP_FINALLY?).
_io.open's __enter__
is implemented in C so it should be safe. I looped in @ncoghlan for a second pair of eyes on this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aye, this looks good to me. It would still be nice to come up with a more systematic solution, but in the meantime, we may as well handle this specific case.
Thanks @serhiy-storchaka for the PR, and @ncoghlan for merging it 🌮🎉.. I'm working now to backport this PR to: 3.6, 3.7. |
…ITH. (pythonGH-8159) This will prevent emitting a resource warning when the execution was interrupted by Ctrl-C between calling open() and entering a 'with' block in "with open()". (cherry picked from commit 3f4d90d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
GH-8197 is a backport of this pull request to the 3.7 branch. |
Sorry, @serhiy-storchaka and @ncoghlan, I could not cleanly backport this to |
…SYNC_WITH. (pythonGH-8159) This will prevent emitting a resource warning when the execution was interrupted by Ctrl-C between calling open() and entering a 'with' block in "with open()".. (cherry picked from commit 3f4d90d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
GH-8198 is a backport of this pull request to the 3.6 branch. |
I'm not keen on this change. For the specific case of with Opener(filename):
...
|
Adding So for now, we're only playing the statistical game of improving people's odds of avoiding poorly timed signals, without addressing the underlying flaws in the signal handling architecture. Longer term, it definitely makes sense to move signal checks to returning from functions and jumping back in loops, and then working out some way to exempt |
This will prevent emitting a resource warning when the execution was
interrupted by Ctrl-C between calling open() and entering a 'with' block
in "with open()".
https://bugs.python.org/issue34066