##// END OF EJS Templates
Multiple improvements to tab completion....
Multiple improvements to tab completion. I refactored the API quite a bit, to retain readline compatibility but make it more independent of readline. There's still more to do in cleaning up our init_readline() method, but now the completer objects have separate rlcomplete() and complete() methods. The former uses the quirky readline API with a state flag, while the latter is stateless, takes only text information, and is more suitable for GUIs and other frontends to call programatically. Made other minor fixes to ensure the test suite passes in full. While all this code is a bit messy, we're getting in the direction of the APIs we need in the long run.

File last commit:

r2482:6b305ad5
r2839:8cff4913
Show More
__init__.py
25 lines | 953 B | text/x-python | PythonLexer
Brian E Granger
This is a manual merge of certain things in the ipython1-dev branch, revision 46, into the main ...
r1234 # encoding: utf-8
"""The IPython1 kernel.
The IPython kernel actually refers to three things:
* The IPython Engine
* The IPython Controller
* Clients to the IPython Controller
The kernel module implements the engine, controller and client and all the
network protocols needed for the various entities to talk to each other.
An end user should probably begin by looking at the `client.py` module
if they need blocking clients or in `asyncclient.py` if they want asynchronous,
deferred/Twisted using clients.
"""
__docformat__ = "restructuredtext en"
Brian Granger
Fix for ticket: https://bugs.launchpad.net/bugs/361414...
r1945 #-----------------------------------------------------------------------------
Brian E Granger
This is a manual merge of certain things in the ipython1-dev branch, revision 46, into the main ...
r1234 # Copyright (C) 2008 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
Brian Granger
Initial refactor of task dependency system....
r1952 #-----------------------------------------------------------------------------
Fernando Perez
Moved twisted import into a function, so base exception classes in kernel...
r2482 from IPython.kernel.error import TaskRejectError