A kernel client for in-process kernels.
Bases: object
Base class for in-process channels.
This method is called in the main thread when a message arrives.
Subclasses should override this method to handle incoming messages.
Call the message handlers later.
The default implementation just calls the handlers immediately, but this method exists so that GUI toolkits can defer calling the handlers until after the event loop has run, as expected by GUI frontends.
Process any pending GUI events.
This method will be never be called from a frontend without an event loop (e.g., a terminal frontend).
Bases: IPython.kernel.inprocess.channels.InProcessChannel
See IPython.kernel.channels.ShellChannel for docstrings.
Request kernel info.
Bases: IPython.kernel.inprocess.channels.InProcessChannel
See IPython.kernel.channels.IOPubChannel for docstrings.
Bases: IPython.kernel.inprocess.channels.InProcessChannel
See IPython.kernel.channels.StdInChannel for docstrings.
Bases: IPython.kernel.inprocess.channels.InProcessChannel
See IPython.kernel.channels.HBChannel for docstrings.