getchar() fails to raise KeyboardInterrupt on Python3
Navigation Menu
{{ message }}
- Notifications You must be signed in to change notification settings
- Fork 1.6k
Closed
Description
opened
on May 14, 2016On Python3 (click6.6), getchar() will just pass on Ctrl+C instead of raising a KeyboardInterrupt. I would assume this is because ch == '\x03: should be ch == b'\x03' in _termui_impl.py.