##// END OF EJS Templates
Partial fix to #3653 (from foo import <tab>)...
Partial fix to #3653 (from foo import <tab>) Some configurability for Julia (change the regexp because ! is a valid char in token from them)

File last commit:

r9190:20a102a5
r12912:7fa27b34
Show More
views.py
15 lines | 195 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'])