##// END OF EJS Templates
use rlineimpl in terminal.console
MinRK -
Show More
@@ -1,7 +1,6 b''
1 """Adapt readline completer interface to make ZMQ request.
1 """Adapt readline completer interface to make ZMQ request.
2 """
2 """
3 # -*- coding: utf-8 -*-
3 # -*- coding: utf-8 -*-
4 import readline
5 try:
4 try:
6 from queue import Empty # Py 3
5 from queue import Empty # Py 3
7 except ImportError:
6 except ImportError:
@@ -10,6 +9,7 b' except ImportError:'
10 from IPython.config import Configurable
9 from IPython.config import Configurable
11 from IPython.core.completer import IPCompleter
10 from IPython.core.completer import IPCompleter
12 from IPython.utils.traitlets import Float
11 from IPython.utils.traitlets import Float
12 import IPython.utils.rlineimpl as readline
13
13
14 class ZMQCompleter(IPCompleter):
14 class ZMQCompleter(IPCompleter):
15 """Client-side completion machinery.
15 """Client-side completion machinery.
General Comments 0
You need to be logged in to leave comments. Login now