12 you set the module TABWIDTH variable (default 8) to the correct tab width |
12 you set the module TABWIDTH variable (default 8) to the correct tab width |
13 for the file.</li> |
13 for the file.</li> |
14 </ul> |
14 </ul> |
15 """ |
15 """ |
16 |
16 |
|
17 import contextlib |
|
18 import importlib.machinery |
|
19 import os |
|
20 import re |
17 import sys |
21 import sys |
18 import os |
22 |
19 import importlib.machinery |
23 from functools import reduce |
20 import re |
|
21 import contextlib |
|
22 |
24 |
23 from eric7 import Utilities |
25 from eric7 import Utilities |
24 from functools import reduce |
|
25 |
26 |
26 __all__ = [ |
27 __all__ = [ |
27 "Module", |
28 "Module", |
28 "Class", |
29 "Class", |
29 "Function", |
30 "Function", |