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