##// END OF EJS Templates
docfix: looks like a file path might have been accidentally pasted in the middle of a word
docfix: looks like a file path might have been accidentally pasted in the middle of a word

File last commit:

r4910:0dc49390
r5805:c3068bb3
Show More
views.py
14 lines | 192 B | text/x-python | PythonLexer
MinRK
move IPython.zmq.parallel to IPython.parallel
r3666 from IPython.parallel import *
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
MinRK
updated newparallel examples, moved into docs
r3609 client = Client()
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
for id in client.ids:
MinRK
update API after sagedays29...
r3664 client[id].push(dict(ids=id*id))
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
MinRK
update API after sagedays29...
r3664 v = client[0]
v['a'] = 5
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
MinRK
update API after sagedays29...
r3664 print v['a']
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
remotes = client[:]
print remotes['ids']