##// END OF EJS Templates
update imports with new layout
update imports with new layout

File last commit:

r10284:2a5c0f89
r10284:2a5c0f89
Show More
__init__.py
10 lines | 284 B | text/x-python | PythonLexer
MinRK
define and test IPython.kernel public API
r9376 """IPython kernels and associated utilities"""
Brian Granger
Fixed docstring of IPython.kernel.__init__.
r3518
MinRK
check zmq version at top-level kernel import...
r10198 # just for friendlier zmq version check
from . import zmq
MinRK
split kernel.util into kernel.connect and kernel.launcher
r9355 from .connect import *
from .launcher import *
MinRK
update imports with new layout
r10284 from .manager import KernelManager
from .blocking import BlockingKernelManager
MinRK
define and test IPython.kernel public API
r9376 from .multikernelmanager import MultiKernelManager