10 It is based on the Python class browser found in this package. |
10 It is based on the Python class browser found in this package. |
11 """ |
11 """ |
12 |
12 |
13 import re |
13 import re |
14 |
14 |
15 import Utilities |
15 from eric7 import Utilities |
16 import Utilities.ClassBrowsers as ClassBrowsers |
16 from eric7.Utilities import ClassBrowsers |
17 from . import ClbrBaseClasses |
17 from . import ClbrBaseClasses |
18 |
18 |
19 SUPPORTED_TYPES = [ClassBrowsers.PROTO_SOURCE] |
19 SUPPORTED_TYPES = [ClassBrowsers.PROTO_SOURCE] |
20 |
20 |
21 _getnext = re.compile( |
21 _getnext = re.compile( |