comparison: eric6/QScintilla/Editor.py
eric6/QScintilla/Editor.py
- branch
- without_py2_and_pyqt4
- changeset 7192
- a22eee00b052
- parent 7178
- 43e994af5ee0
- child 7198
- 684261ef2165
equal
deleted
inserted
replaced
5 |
5 |
6 """ |
6 """ |
7 Module implementing the editor component of the eric6 IDE. |
7 Module implementing the editor component of the eric6 IDE. |
8 """ |
8 """ |
9 from __future__ import unicode_literals |
9 from __future__ import unicode_literals |
10 try: |
|
11 str = unicode |
|
12 chr = unichr |
|
13 except NameError: |
|
14 pass |
|
15 |
10 |
16 import os |
11 import os |
17 import re |
12 import re |
18 import difflib |
13 import difflib |
19 |
14 |