##// END OF EJS Templates
Merge pull request #2882 from takluyver/utils-cleanup...
Merge pull request #2882 from takluyver/utils-cleanup Utils cleanup. This removes various unused code that was sitting in IPython.utils. I checked that we don't use these functions and modules at present, but we may want to leave some of them for future use or for extension authors. For the first pass, I've been deliberately quite aggressive about removing things.

File last commit:

r9376:d18872e9
r9486:a3c4e796 merge
Show More
__init__.py
7 lines | 244 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
split kernel.util into kernel.connect and kernel.launcher
r9355 from .connect import *
from .launcher import *
MinRK
define and test IPython.kernel public API
r9376 from .kernelmanager import KernelManager
from .blockingkernelmanager import BlockingKernelManager
from .multikernelmanager import MultiKernelManager