Skip to content

Commit

Permalink
Comment explaining overriding readline_use traitlet.
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Jul 22, 2011
1 parent 3b27020 commit 28202e8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions IPython/zmq/zmqshell.py
Expand Up @@ -80,6 +80,9 @@ class ZMQInteractiveShell(InteractiveShell):
displayhook_class = Type(ZMQShellDisplayHook)
display_pub_class = Type(ZMQDisplayPublisher)

# Override the traitlet in the parent class, because there's no point using
# readline for the kernel. Can be removed when the readline code is moved
# to the terminal frontend.
readline_use = CBool(False)

exiter = Instance(ZMQExitAutocall)
Expand Down

0 comments on commit 28202e8

Please sign in to comment.