comparison: Utilities/__init__.py
Utilities/__init__.py
- branch
- Py2 comp.
- changeset 2525
- 8b507a9a2d40
- parent 2319
- 116c547dedce
- child 2571
- e6bb19eb87ea
equal
deleted
inserted
replaced
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Package implementing various functions/classes needed everywhere within eric5. |
7 Package implementing various functions/classes needed everywhere within eric5. |
8 """ |
8 """ |
|
9 |
|
10 from __future__ import unicode_literals # __IGNORE_WARNING__ |
|
11 try: |
|
12 str = unicode |
|
13 except (NameError): |
|
14 pass |
9 |
15 |
10 import os |
16 import os |
11 import sys |
17 import sys |
12 import re |
18 import re |
13 import fnmatch |
19 import fnmatch |