-
-
Notifications
You must be signed in to change notification settings - Fork 52
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
SigInt events get buffered until another key is pressed #165
Comments
Nevermind, this was just me not understanding how this script worked. |
Reopened, added Cbreak() and it's still there. |
I bet this is it:
https://www.python.org/dev/peps/pep-0475/ describes the change. Yep! Fixed by #166 |
This is a big behavior change (back to how it is documented + used to work)! It seems just better, so I'm ok with possibly breaking consumers. |
pressing a, ctrl-c, b, ctrl-c, c, ctrl-d produces
so these sigints are waiting for the next key event.
The text was updated successfully, but these errors were encountered: