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 martin.panter
Recipients martin.panter, memeplex
Date 2016-05-02.04:21:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1462162880.87.0.269699830548.issue26894@psf.upfronthosting.co.za>
In-reply-to
Content
What happens instead of aborting the line at step 3? Is Ctrl+C completely ignored, as if you didn’t press it?

Perhaps matplotlib is interfering with Python’s SIGINT handler and/or PyOS_InputHook().

Can you eliminate ipython from the equation? I.e. does the problem happen with the built-in Python interactive interpreter? Or with a simple script like the following:

import readline
import matplotlib  # Or whatever is needed to trigger it
while True:
    input("PROMPT ")
History
Date User Action Args
2016-05-02 04:21:20martin.pantersetrecipients: + martin.panter, memeplex
2016-05-02 04:21:20martin.pantersetmessageid: <1462162880.87.0.269699830548.issue26894@psf.upfronthosting.co.za>
2016-05-02 04:21:20martin.panterlinkissue26894 messages
2016-05-02 04:21:20martin.pantercreate