11:b0996e4a289e | 12:1d8dd9706f46 |
---|---|
9 | 9 |
10 import re | 10 import re |
11 | 11 |
12 from PyQt4.Qsci import QsciLexerPython, QsciScintilla | 12 from PyQt4.Qsci import QsciLexerPython, QsciScintilla |
13 | 13 |
14 from Lexer import Lexer | 14 from .Lexer import Lexer |
15 import Preferences | 15 import Preferences |
16 | 16 |
17 class LexerPython(QsciLexerPython, Lexer): | 17 class LexerPython(QsciLexerPython, Lexer): |
18 """ | 18 """ |
19 Subclass to implement some additional lexer dependant methods. | 19 Subclass to implement some additional lexer dependant methods. |