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 neologix
Recipients ezio.melotti, neologix, sdaoden, vstinner
Date 2011-03-23.14:05:44
SpamBayes Score 0.014453713
Marked as misclassified No
Message-id <1300889146.47.0.928753429011.issue11650@psf.upfronthosting.co.za>
In-reply-to
Content
What's the problem here ?
CTRL-Z causes the controlling terminal to send a SIGTSTP to the process, and the default handler stops the process, pretty much like a SIGSTOP.
If you don't want that to happen:
import signal
signal.signal(signal.SIGTSTP, signal.SIG_IGN)
History
Date User Action Args
2011-03-23 14:05:46neologixsetrecipients: + neologix, vstinner, ezio.melotti, sdaoden
2011-03-23 14:05:46neologixsetmessageid: <1300889146.47.0.928753429011.issue11650@psf.upfronthosting.co.za>
2011-03-23 14:05:44neologixlinkissue11650 messages
2011-03-23 14:05:44neologixcreate