##// END OF EJS Templates
new completer for qtconsole....
new completer for qtconsole. add a completer to the qtconsole that is navigable by arraow keys and tab. One need to call it twice to get it on focus and be able to select completion with Return. looks like zsh completer, not the gui drop down list of --gui-completer. This also try to split the completion logic from console_widget, and try to keep the old completer qui around. The plain completer that never takes focus back, and the QlistWidget completer. to switch between the 3, the --gui-completion flag as been changed to take an argument (plain, droplist, ncurses).

File last commit:

r6455:15863dc1
r7389:1422d277
Show More
views.py
15 lines | 195 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
Thomas Kluyver
Update print syntax in parallel examples.
r6455 print(v['a'])
MinRK
added py4science demos as examples + NetworkX DAG dependencies
r3564
remotes = client[:]
Thomas Kluyver
Update print syntax in parallel examples.
r6455 print(remotes['ids'])