##// END OF EJS Templates
Update more examples of command line args in the docs, and make a few minor formatting corrections.
Update more examples of command line args in the docs, and make a few minor formatting corrections.

File last commit:

r3666:a6a0636a
r4198:c130ed13
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']