346:877cac2e8d94 | 347:b5048b5ff454 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the code assist client interface to rope. | 7 Module implementing the code assist client interface to rope. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals | |
11 try: | |
12 str = unicode # __IGNORE_WARNING__ __IGNORE_EXCEPTION__ | |
13 except NameError: | |
14 pass | |
15 | 9 |
16 import sys | 10 import sys |
17 import os | 11 import os |
18 | 12 |
19 sys.path.insert(0, os.path.dirname(__file__)) | 13 sys.path.insert(0, os.path.dirname(__file__)) |