##// END OF EJS Templates
custom keyboard interrupt handling in ask_yes_no...
custom keyboard interrupt handling in ask_yes_no Sometimes, Ctrl-C just makes sense as an answer, and re-asking the question is just frustrating. This changes makes it possible to break out of the asking loop via Ctrl-C. This is particularly handy for asking questions from the command line, where one expects Ctrl-c to be a sort of "Cancel" operation, and is often functionally equivalent to "no"

File last commit:

r9190:20a102a5
r13609:73441e41
Show More
helloworld.ipynb
100 lines | 2.0 KiB | text/plain | TextLexer

Distributed hello world

Originally by Ken Kinder (ken at kenkinder dom com)

In [1]:
from IPython.parallel import Client
In [2]:
rc = Client()
view = rc.load_balanced_view()
In [3]:
def sleep_and_echo(t, msg):
    import time
    time.sleep(t)
    return msg
In [4]:
world = view.apply_async(sleep_and_echo, 3, 'World!')
hello = view.apply_async(sleep_and_echo, 2, 'Hello')
In [6]:
print "Submitted tasks:", hello.msg_ids + world.msg_ids
print hello.get(), world.get()
Submitted tasks: ['04670c2d-b2fd-4b6b-a5ac-dee15e533683', 'fc802284-507b-4c29-a526-67396e17718c']
Hello World!
In [ ]: