##// END OF EJS Templates
Apply width and height to outter most div of the tab widget.
Apply width and height to outter most div of the tab widget.

File last commit:

r17821:e34e96ed
r21464:39954bd8
Show More
__init__.py
11 lines | 328 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
add KernelClient to IPython.kernel namespace
r10286 from .client import KernelClient
Thomas Kluyver
Create run_kernel context manager
r17821 from .manager import KernelManager, run_kernel
MinRK
split KernelManager into KernelManager + KernelClient
r10285 from .blocking import BlockingKernelClient
MinRK
define and test IPython.kernel public API
r9376 from .multikernelmanager import MultiKernelManager