-
-
Notifications
You must be signed in to change notification settings - Fork 33.4k
bpo-28166: Continue to read after Ctrl+C if SIGINT was ignored #8344
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
Conversation
|
@ValeriyaSinevich The whitespace issue seems to be because of using tabs instead of spaces (which for some unknown reason VS still defaults to for C++...). Replacing them with spaces (and ensuring indents of 4 spaces, which doesn't seem to be consistent in the existing code) should get you past that check. |
csabella
left a comment
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.
@ValeriyaSinevich, please address @zooba's comments about the whitespace in order to pass the CI checks. Thanks!
|
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
|
The original author of this pull request doesn't seem to be active anymore, so I'm going to close this PR. It can be reopened or a new pull request can be created to address the issue. Thank you! |
Do not break out of the reading loop if SIGINT was ignored or the handler doesn't raise an exception.
https://bugs.python.org/issue28166