[issue17619] input() swallows KeyboardInterrupt in Python 3.3

2013-04-02 Thread Drekin
New submission from Drekin: At least on Windows, input() doesn't raise KeyboardInterrupt when Ctrl-C is hit in Python 3.3 (it does in Python 3.2). 3.3: x = input() # Ctrl-C hit - no exception raised x NameError 3.2: x = input() # Ctrl-C hit KeyboardInterrupt -- messages: 185845

[issue17619] input() swallows KeyboardInterrupt in Python 3.3

2013-04-02 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Seems to be windows specific. It works fine on Linux and Solaris. -- nosy: +jcea ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17619 ___