This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Drekin
Recipients Drekin
Date 2013-04-02.16:35:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364920551.51.0.354757016043.issue17619@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2013-04-02 16:35:51Drekinsetrecipients: + Drekin
2013-04-02 16:35:51Drekinsetmessageid: <1364920551.51.0.354757016043.issue17619@psf.upfronthosting.co.za>
2013-04-02 16:35:51Drekinlinkissue17619 messages
2013-04-02 16:35:51Drekincreate