##// END OF EJS Templates
Refactor kernel managers in preparation for the EmbeddedKernel.
Refactor kernel managers in preparation for the EmbeddedKernel.

File last commit:

r8408:e367f3e4
r8408:e367f3e4
Show More
ipkernel.py
22 lines | 834 B | text/x-python | PythonLexer
""" An embedded (in-process) kernel. """
#-----------------------------------------------------------------------------
# Copyright (C) 2012 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.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
# Local imports.
from IPython.zmq.ipkernel import Kernel
#-----------------------------------------------------------------------------
# Main kernel class
#-----------------------------------------------------------------------------
class EmbeddedKernel(Kernel):
pass