##// END OF EJS Templates
Starting help in InteractiveShell.
Starting help in InteractiveShell.

File last commit:

r3690:aafdf2be
r3787:7a726af7
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()