@@ -76,7 +76,7 @@ def process_events(self):
7676
7777
7878class InProcessShellChannel (InProcessChannel ):
79- """See `IPython.zmq .kernelmanager.ShellChannel` for docstrings."""
79+ """See `IPython.kernel .kernelmanager.ShellChannel` for docstrings."""
8080
8181 # flag for whether execute requests should be allowed to call raw_input
8282 allow_stdin = True
@@ -141,14 +141,14 @@ def _dispatch_to_kernel(self, msg):
141141
142142
143143class InProcessIOPubChannel (InProcessChannel ):
144- """See `IPython.zmq .kernelmanager.IOPubChannel` for docstrings."""
144+ """See `IPython.kernel .kernelmanager.IOPubChannel` for docstrings."""
145145
146146 def flush (self , timeout = 1.0 ):
147147 pass
148148
149149
150150class InProcessStdInChannel (InProcessChannel ):
151- """See `IPython.zmq .kernelmanager.StdInChannel` for docstrings."""
151+ """See `IPython.kernel .kernelmanager.StdInChannel` for docstrings."""
152152
153153 def input (self , string ):
154154 kernel = self .manager .kernel
@@ -158,7 +158,7 @@ def input(self, string):
158158
159159
160160class InProcessHBChannel (InProcessChannel ):
161- """See `IPython.zmq .kernelmanager.HBChannel` for docstrings."""
161+ """See `IPython.kernel .kernelmanager.HBChannel` for docstrings."""
162162
163163 time_to_dead = 3.0
164164
@@ -187,7 +187,7 @@ class InProcessKernelManager(Configurable):
187187 `IPython.kernel.kernelmanagerabc.KernelManagerABC` and allows
188188 (asynchronous) frontends to be used seamlessly with an in-process kernel.
189189
190- See `IPython.zmq .kernelmanager.KernelManager` for docstrings.
190+ See `IPython.kernel .kernelmanager.KernelManager` for docstrings.
191191 """
192192
193193 # The Session to use for building messages.
0 commit comments