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 sbt
Recipients Drekin, jcea, sbt, tim.golden, vstinner
Date 2013-04-03.10:19:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364984388.65.0.117299693058.issue17619@psf.upfronthosting.co.za>
In-reply-to
Content
Maybe this is related to

    http://bugs.python.org/issue13673

which causes PyTraceback_Print() to fail if a signal is received but PyErr_CheckSignals() has not been called.

Note that wrapping in "try: ... except: raise" makes a traceback appear:

>>> try: input()
... except: raise
...
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
KeyboardInterrupt

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
KeyboardInterrupt
History
Date User Action Args
2013-04-03 10:19:48sbtsetrecipients: + sbt, jcea, vstinner, tim.golden, Drekin
2013-04-03 10:19:48sbtsetmessageid: <1364984388.65.0.117299693058.issue17619@psf.upfronthosting.co.za>
2013-04-03 10:19:48sbtlinkissue17619 messages
2013-04-03 10:19:48sbtcreate