##// END OF EJS Templates
Remove svn-style $Id marks from docstrings and Release imports....
Remove svn-style $Id marks from docstrings and Release imports. The Id marks show up as junk in the API docs (and they were outdated anyway, since we now use bzr). The Release imports were in there for pulling author/license information for epydoc, but now with sphinx they aren't necessary, and they just are extra startup work.

File last commit:

r480:c297d46c
r1853:b8f5152c
Show More
ipy_signals.py
61 lines | 1.7 KiB | text/x-python | PythonLexer
vivainio
Add ipy_signals for better ctrl + C processing
r477 """ Advanced signal (e.g. ctrl+C) handling for IPython
So far, this only ignores ctrl + C in IPython file a subprocess
is executing, to get closer to how a "proper" shell behaves.
Other signal processing may be implemented later on.
If _ip.options.verbose is true, show exit status if nonzero
"""
vivainio
ipy_signals win32 version
r480 import signal,os,sys
vivainio
Add ipy_signals for better ctrl + C processing
r477 import IPython.ipapi
import subprocess
ip = IPython.ipapi.get()
vivainio
ipy_signals win32 version
r480 def new_ipsystem_posix(cmd):
vivainio
Add ipy_signals for better ctrl + C processing
r477 """ ctrl+c ignoring replacement for system() command in iplib.
Ignore ctrl + c in IPython process during the command execution.
The subprocess will still get the ctrl + c signal.
vivainio
ipy_signals win32 version
r480
posix implementation
vivainio
Add ipy_signals for better ctrl + C processing
r477 """
p = subprocess.Popen(cmd, shell = True)
old_handler = signal.signal(signal.SIGINT, signal.SIG_IGN)
pid,status = os.waitpid(p.pid,0)
signal.signal(signal.SIGINT, old_handler)
if status and ip.options.verbose:
print "[exit status: %d]" % status
vivainio
ipy_signals win32 version
r480 def new_ipsystem_win32(cmd):
""" ctrl+c ignoring replacement for system() command in iplib.
Ignore ctrl + c in IPython process during the command execution.
The subprocess will still get the ctrl + c signal.
win32 implementation
"""
old_handler = signal.signal(signal.SIGINT, signal.SIG_IGN)
status = os.system(cmd)
signal.signal(signal.SIGINT, old_handler)
if status and ip.options.verbose:
print "[exit status: %d]" % status
vivainio
Add ipy_signals for better ctrl + C processing
r477 def init():
o = ip.options
try:
o.verbose
except AttributeError:
o.allow_new_attr (True )
o.verbose = 0
vivainio
ipy_signals win32 version
r480 ip.IP.system = (sys.platform == 'win32' and new_ipsystem_win32 or
new_ipsystem_posix)
vivainio
Add ipy_signals for better ctrl + C processing
r477
init()