##// END OF EJS Templates
keep track of the sigint timer, and cancel it on a new prompt
keep track of the sigint timer, and cancel it on a new prompt

File last commit:

r10198:3b3c55b4
r10383:251778c7
Show More
__init__.py
10 lines | 303 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
define and test IPython.kernel public API
r9376 from .kernelmanager import KernelManager
from .blockingkernelmanager import BlockingKernelManager
from .multikernelmanager import MultiKernelManager