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 eryksun
Recipients Nixawk, eryksun, r.david.murray, rhettinger
Date 2017-01-10.07:41:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1484034064.7.0.782384286572.issue29222@psf.upfronthosting.co.za>
In-reply-to
Content
As a workaround, the platform's default Ctrl+C handler should allow killing the process:

    >>> signal.signal(signal.SIGINT, signal.SIG_DFL)
    <built-in function default_int_handler>

    >>> counter = itertools.count()
    >>> 'count' in counter
    ^C

But it's nowhere near as useful as a KeyboardInterrupt exception, if something ever gets implemented to resolve issue 26351.
History
Date User Action Args
2017-01-10 07:41:04eryksunsetrecipients: + eryksun, rhettinger, r.david.murray, Nixawk
2017-01-10 07:41:04eryksunsetmessageid: <1484034064.7.0.782384286572.issue29222@psf.upfronthosting.co.za>
2017-01-10 07:41:04eryksunlinkissue29222 messages
2017-01-10 07:41:04eryksuncreate