##// END OF EJS Templates
ipy_signals win32 version
vivainio -
Show More
@@ -1,45 +1,62 b''
1 1 """ Advanced signal (e.g. ctrl+C) handling for IPython
2 2
3 3 So far, this only ignores ctrl + C in IPython file a subprocess
4 4 is executing, to get closer to how a "proper" shell behaves.
5 5
6 6 Other signal processing may be implemented later on.
7 7
8 8 If _ip.options.verbose is true, show exit status if nonzero
9 9
10 10 """
11 11
12 import signal,os
12 import signal,os,sys
13 13 import IPython.ipapi
14 14 import subprocess
15 15
16 16 ip = IPython.ipapi.get()
17 17
18
19 def new_ipsystem(cmd):
18 def new_ipsystem_posix(cmd):
20 19 """ ctrl+c ignoring replacement for system() command in iplib.
21 20
22 21 Ignore ctrl + c in IPython process during the command execution.
23 22 The subprocess will still get the ctrl + c signal.
23
24 posix implementation
24 25 """
25 26
26 27 p = subprocess.Popen(cmd, shell = True)
27 28
28 29 old_handler = signal.signal(signal.SIGINT, signal.SIG_IGN)
29 30 pid,status = os.waitpid(p.pid,0)
30 31 signal.signal(signal.SIGINT, old_handler)
31 32 if status and ip.options.verbose:
32 33 print "[exit status: %d]" % status
33 34
35 def new_ipsystem_win32(cmd):
36 """ ctrl+c ignoring replacement for system() command in iplib.
37
38 Ignore ctrl + c in IPython process during the command execution.
39 The subprocess will still get the ctrl + c signal.
40
41 win32 implementation
42 """
43 old_handler = signal.signal(signal.SIGINT, signal.SIG_IGN)
44 status = os.system(cmd)
45 signal.signal(signal.SIGINT, old_handler)
46 if status and ip.options.verbose:
47 print "[exit status: %d]" % status
48
49
34 50 def init():
35 51 o = ip.options
36 52 try:
37 53 o.verbose
38 54 except AttributeError:
39 55 o.allow_new_attr (True )
40 56 o.verbose = 0
41 57
42 ip.IP.system = new_ipsystem
58 ip.IP.system = (sys.platform == 'win32' and new_ipsystem_win32 or
59 new_ipsystem_posix)
43 60
44 61 init()
45 62 No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now