##// END OF EJS Templates
Fixing another bug in msg_type refactoring.
Fixing another bug in msg_type refactoring.

File last commit:

r3690:aafdf2be
r4238:260396c3
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()