##// END OF EJS Templates
Merge branch 'oinspect' into takluyver-oinspect
Merge branch 'oinspect' into takluyver-oinspect

File last commit:

r3690:aafdf2be
r3863:065ce78f merge
Show More
task1.py
12 lines | 188 B | text/x-python | PythonLexer
from IPython.parallel import Client
rc = Client()
v = rc.load_balanced_view()
rc[:]['d'] = 30
def task(a):
return a, 10*d, a*10*d
ar = v.apply(task, 5)
print "a, b, c: ", ar.get()