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