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, jcea, tim.golden, vstinner
Date 2013-04-03.10:17:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364984260.01.0.79618444458.issue17619@psf.upfronthosting.co.za>
In-reply-to
Content
There is related weird behavior:

>>> try:
...     input()
... except KeyboardInterrupt:
...     print("exception occured")
...
# Ctrl-C hit
Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
KeyboardInterrupt

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
KeyboardInterrupt
>>>

Seems like handling of Ctrl-C is kind of “out of sync”.
History
Date User Action Args
2013-04-03 10:17:40Drekinsetrecipients: + Drekin, jcea, vstinner, tim.golden
2013-04-03 10:17:40Drekinsetmessageid: <1364984260.01.0.79618444458.issue17619@psf.upfronthosting.co.za>
2013-04-03 10:17:39Drekinlinkissue17619 messages
2013-04-03 10:17:39Drekincreate