Skip to content

Commit 704b7e0

Browse files
committed
move kernelmanagerabc into IPython.kernel
1 parent 980674d commit 704b7e0

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

IPython/inprocess/kernelmanager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from IPython.config.configurable import Configurable
1616
from IPython.inprocess.socket import DummySocket
1717
from IPython.utils.traitlets import Any, Instance, Type
18-
from IPython.zmq.kernelmanagerabc import (
18+
from IPython.kernel import (
1919
ShellChannelABC, IOPubChannelABC,
2020
HBChannelABC, StdInChannelABC,
2121
KernelManagerABC
@@ -184,7 +184,7 @@ class InProcessKernelManager(Configurable):
184184
"""A manager for an in-process kernel.
185185
186186
This class implements the interface of
187-
`IPython.zmq.kernelmanagerabc.KernelManagerABC` and allows
187+
`IPython.kernel.kernelmanagerabc.KernelManagerABC` and allows
188188
(asynchronous) frontends to be used seamlessly with an in-process kernel.
189189
190190
See `IPython.zmq.kernelmanager.KernelManager` for docstrings.

IPython/kernel/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
"""IPython kernel bases"""
1+
"""IPython kernel bases and utilities"""
22

3+
from .kernelmanagerabc import *
34
from .util import *

IPython/zmq/kernelmanager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
launch_kernel,
4747
)
4848
from session import Session
49-
from IPython.zmq.kernelmanagerabc import (
49+
from IPython.kernel import (
5050
ShellChannelABC, IOPubChannelABC,
5151
HBChannelABC, StdInChannelABC,
5252
KernelManagerABC

0 commit comments

Comments
 (0)