##// END OF EJS Templates
Rename old config files if they are found and not pristine.
Rename old config files if they are found and not pristine.

File last commit:

r3690:aafdf2be
r4180:75bb82ba
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()