##// END OF EJS Templates
IPython.testing.decorators is imported as dec everywhere else, unify....
IPython.testing.decorators is imported as dec everywhere else, unify. Signed-off-by: Thomas Spura <thomas.spura@gmail.com>

File last commit:

r4910:0dc49390
r5810:549a6b38
Show More
views.py
14 lines | 192 B | text/x-python | PythonLexer
from IPython.parallel import *
client = Client()
for id in client.ids:
client[id].push(dict(ids=id*id))
v = client[0]
v['a'] = 5
print v['a']
remotes = client[:]
print remotes['ids']