src/eric7/Utilities/ModuleParser.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9482
a2bc06a54d9d
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
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",

eric ide

mercurial