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 yselivanov
Recipients yselivanov
Date 2015-12-02.17:01:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
The below code blocks Python eval loop and makes it unresponsive to signals (like ^C).

    import reprlib

    try:
        raise RuntimeError
    except RuntimeError as ex:
        ex.__context__ = ex
        reprlib.repr(ex)
History
Date User Action Args
2015-12-02 17:01:44yselivanovsetrecipients: + yselivanov
2015-12-02 17:01:44yselivanovsetmessageid: <[email protected]>
2015-12-02 17:01:44yselivanovlinkissue25781 messages
2015-12-02 17:01:44yselivanovcreate