##// END OF EJS Templates
Renamed __pretty__ to _repr_pretty_ and changed updated pretty.py...
Renamed __pretty__ to _repr_pretty_ and changed updated pretty.py * Throughout the codebase, __pretty__ has been changed to _repr_pretty_ to match general convention for special method names. * The logic in pretty.py now matches that in formatters.py in that formatters that are callables are tried first and then special methods are used.

File last commit:

r3666:a6a0636a
r3879:4241df5e
Show More
helloworld.py
19 lines | 424 B | text/x-python | PythonLexer
"""
A Distributed Hello world
Ken Kinder <ken@kenkinder.com>
"""
from IPython.parallel import Client
rc = Client()
def sleep_and_echo(t, msg):
import time
time.sleep(t)
return msg
view = rc.load_balanced_view()
world = view.apply_async(sleep_and_echo, 3, 'World!')
hello = view.apply_async(sleep_and_echo, 2, 'Hello')
print "Submitted tasks:", hello.msg_ids, world.msg_ids
print hello.get(), world.get()