##// END OF EJS Templates
Merge pull request #3217 from ivanov/load-for-dirs...
Merge pull request #3217 from ivanov/load-for-dirs informative error when trying to load directories prior to this commit, the error message for trying to load a directory looked like this: ValueError: '~' was not found in history, as a file, url, nor in the user namespace. now, the error displayed is as follows: ValueError: '~' is a directory, not a regular file.

File last commit:

r9375:4d245182
r10349:106d3e86 merge
Show More
inprocess_kernelmanager.py
33 lines | 1.1 KiB | text/x-python | PythonLexer
/ IPython / frontend / qt / inprocess_kernelmanager.py
""" Defines an in-process KernelManager with signals and slots.
"""
# Local imports.
from IPython.kernel.inprocess.kernelmanager import \
InProcessShellChannel, InProcessIOPubChannel, InProcessStdInChannel, \
InProcessHBChannel, InProcessKernelManager
from IPython.utils.traitlets import Type
from base_kernelmanager import QtShellChannelMixin, QtIOPubChannelMixin, \
QtStdInChannelMixin, QtHBChannelMixin, QtKernelManagerMixin
class QtInProcessShellChannel(QtShellChannelMixin, InProcessShellChannel):
pass
class QtInProcessIOPubChannel(QtIOPubChannelMixin, InProcessIOPubChannel):
pass
class QtInProcessStdInChannel(QtStdInChannelMixin, InProcessStdInChannel):
pass
class QtInProcessHBChannel(QtHBChannelMixin, InProcessHBChannel):
pass
class QtInProcessKernelManager(QtKernelManagerMixin, InProcessKernelManager):
""" An in-process KernelManager with signals and slots.
"""
iopub_channel_class = Type(QtInProcessIOPubChannel)
shell_channel_class = Type(QtInProcessShellChannel)
stdin_channel_class = Type(QtInProcessStdInChannel)
hb_channel_class = Type(QtInProcessHBChannel)