##// END OF EJS Templates
further fixes to magic docstrings...
further fixes to magic docstrings as discussed in PR #1385, "plain reST for docstrings, fancier sphinx extensions OK for the rest of the docs themselves." So I've removed .. sourcecode :: ipython bits with just plain literal blocks

File last commit:

r4910:0dc49390
r6099:bd218759
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']