Make bash subprocess interruptible

Prevent inheriting SIG_IGN

Closes gh-1
main
Thomas Kluyver 11 years ago
parent af97cb0146
commit d7f79edb8c

@ -1,5 +1,7 @@
from IPython.kernel.zmq.kernelbase import Kernel
from pexpect import replwrap
import signal
from subprocess import check_output
import re
@ -25,7 +27,15 @@ class BashKernel(Kernel):
def __init__(self, **kwargs):
Kernel.__init__(self, **kwargs)
self.bashwrapper = replwrap.bash()
# Signal handlers are inherited by forked processes, and we can't easily
# reset it from the subprocess. Since kernelapp ignores SIGINT except in
# message handlers, we need to temporarily reset the SIGINT handler here
# so that bash and its children are interruptible.
sig = signal.signal(signal.SIGINT, signal.SIG_DFL)
try:
self.bashwrapper = replwrap.bash()
finally:
signal.signal(signal.SIGINT, sig)
def do_execute(self, code, silent, store_history=True, user_expressions=None,
allow_stdin=False):

Loading…
Cancel
Save