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

bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. #8159

Merged
merged 1 commit into from
Jul 9, 2018

Conversation

serhiy-storchaka
Copy link
Member

@serhiy-storchaka serhiy-storchaka commented Jul 7, 2018

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

…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()".
Copy link
Member

@gpshead gpshead left a 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.

Copy link
Contributor

@ncoghlan ncoghlan left a 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.

@ncoghlan ncoghlan merged commit 3f4d90d into python:master Jul 9, 2018
@miss-islington
Copy link
Contributor

Thanks @serhiy-storchaka for the PR, and @ncoghlan for merging it 🌮🎉.. I'm working now to backport this PR to: 3.6, 3.7.
🐍🍒⛏🤖

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jul 9, 2018
…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>
@bedevere-bot
Copy link

GH-8197 is a backport of this pull request to the 3.7 branch.

@miss-islington
Copy link
Contributor

Sorry, @serhiy-storchaka and @ncoghlan, I could not cleanly backport this to 3.6 due to a conflict.
Please backport using cherry_picker on command line.
cherry_picker 3f4d90d4d72921f16babd3f52d7df804916af224 3.6

serhiy-storchaka added a commit to serhiy-storchaka/cpython that referenced this pull request Jul 9, 2018
…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>
@bedevere-bot
Copy link

GH-8198 is a backport of this pull request to the 3.6 branch.

@markshannon
Copy link
Member

I'm not keen on this change.
IMO, the proper general fix is to document that firing interrupts at your program is likely to cause problems, not adding more and more corner cases.

For the specific case of open() the problem is that the resource to be freed is acquired not in the __enter__ method, but in open(). Adding an Opener object is one possible fix.

with Opener(filename):
    ...

Opener.__enter__() would actually open the file.

miss-islington added a commit that referenced this pull request Jul 9, 2018
…ITH. (GH-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>
@ncoghlan
Copy link
Contributor

ncoghlan commented Jul 9, 2018

Adding Opener still doesn't actually fix the problem in the general case: https://bugs.python.org/issue29988

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 __enter__ and __exit__ methods from those general rules (while still not making them uninterruptible)

serhiy-storchaka added a commit that referenced this pull request Jul 9, 2018
…SYNC_WITH. (GH-8159) (GH-8198)

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>
@serhiy-storchaka serhiy-storchaka deleted the no-interrupt-before-with branch January 9, 2019 11:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants