##// END OF EJS Templates
Comment explaining overriding readline_use traitlet.
Thomas Kluyver -
Show More
@@ -80,6 +80,9 b' class ZMQInteractiveShell(InteractiveShell):'
80 displayhook_class = Type(ZMQShellDisplayHook)
80 displayhook_class = Type(ZMQShellDisplayHook)
81 display_pub_class = Type(ZMQDisplayPublisher)
81 display_pub_class = Type(ZMQDisplayPublisher)
82
82
83 # Override the traitlet in the parent class, because there's no point using
84 # readline for the kernel. Can be removed when the readline code is moved
85 # to the terminal frontend.
83 readline_use = CBool(False)
86 readline_use = CBool(False)
84
87
85 exiter = Instance(ZMQExitAutocall)
88 exiter = Instance(ZMQExitAutocall)
General Comments 0
You need to be logged in to leave comments. Login now