Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 9516da56eca7dd3ad63d98588d8ad261 > files > 2603

ipython-1.1.0-3.mga4.noarch.rpm

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'])