100:2bfe9e3fad8d | 101:5098ad8960ed |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the autocompletion interface to rope. | 7 Module implementing the autocompletion interface to rope. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals | |
9 | 11 |
10 import os | 12 import os |
11 import sys | 13 import sys |
12 | 14 |
13 sys.path.insert(0, os.path.dirname(__file__)) | 15 sys.path.insert(0, os.path.dirname(__file__)) |
20 | 22 |
21 import rope.base.libutils | 23 import rope.base.libutils |
22 import rope.contrib.codeassist | 24 import rope.contrib.codeassist |
23 | 25 |
24 from PyQt5.QtCore import QObject | 26 from PyQt5.QtCore import QObject |
25 #from PyQt5.QtGui import * | |
26 | 27 |
27 class CodeAssist(QObject): | 28 class CodeAssist(QObject): |
28 """ | 29 """ |
29 Class implementing the autocompletion interface to rope. | 30 Class implementing the autocompletion interface to rope. |
30 """ | 31 """ |