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 sdaoden
Recipients ezio.melotti, neologix, sdaoden, vstinner
Date 2011-03-23.14:15:53
SpamBayes Score 4.0183746e-05
Marked as misclassified No
Message-id <20110323141537.GF33873@sherwood.local>
In-reply-to <1300889146.47.0.928753429011.issue11650@psf.upfronthosting.co.za>
Content
On Wed, Mar 23, 2011 at 02:05:46PM +0000, Charles-Francois Natali wrote:
> 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)

(What's happening: it's so unresponsive when i try your code .. :)
Rather, i want an interactive python to integrate itself 
neatlessly into normal shell job control, say! 
Thus i always hope that a program takes care about SIGCONT!!

I'm stuck here, grep(1)ing everywhere and only find 
Modules/signalmodule.c for SIGCONT and SIGTSTP (it's *NOT* SunOS). 
Where is Python handling job control?
History
Date User Action Args
2011-03-23 14:15:54sdaodensetrecipients: + sdaoden, vstinner, ezio.melotti, neologix
2011-03-23 14:15:53sdaodenlinkissue11650 messages
2011-03-23 14:15:53sdaodencreate