7 Module implementing a base class for custom lexers. |
7 Module implementing a base class for custom lexers. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt4.Qsci import QsciLexer |
10 from PyQt4.Qsci import QsciLexer |
11 |
11 |
12 from Lexer import Lexer |
12 from .Lexer import Lexer |
13 |
13 |
14 class LexerContainer(QsciLexer, Lexer): |
14 class LexerContainer(QsciLexer, Lexer): |
15 """ |
15 """ |
16 Subclass as a base for the implementation of custom lexers. |
16 Subclass as a base for the implementation of custom lexers. |
17 """ |
17 """ |