Message131872
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) |
|
Date |
User |
Action |
Args |
2011-03-23 14:05:46 | neologix | set | recipients:
+ neologix, vstinner, ezio.melotti, sdaoden |
2011-03-23 14:05:46 | neologix | set | messageid: <1300889146.47.0.928753429011.issue11650@psf.upfronthosting.co.za> |
2011-03-23 14:05:44 | neologix | link | issue11650 messages |
2011-03-23 14:05:44 | neologix | create | |
|