##// END OF EJS Templates
Merge branch '0.10.1-sge' of http://github.com/satra/ipython into satra-0.10.1-sge...
Merge branch '0.10.1-sge' of http://github.com/satra/ipython into satra-0.10.1-sge This branch adds Sun Grid Engine support to the ipcluster startup system. Credits: Justin Riley and Satra Ghosh @ MIT, Matthew Brucher. Closes gh-152 (pull request)

File last commit:

r1952:d68cab7f
r3066:f780f2e9 merge
Show More
__init__.py
24 lines | 952 B | text/x-python | PythonLexer
# 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"
#-----------------------------------------------------------------------------
# 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.
#-----------------------------------------------------------------------------
from IPython.kernel.error import TaskRejectError