Mon, 18 Mar 2019 19:07:10 +0100
LexerPython: fixed an issue where keywords got used before it was defined.
QScintilla/Lexers/LexerPython.py | file | annotate | diff | comparison | revisions |
--- a/QScintilla/Lexers/LexerPython.py Sun Mar 17 19:38:42 2019 +0100 +++ b/QScintilla/Lexers/LexerPython.py Mon Mar 18 19:07:10 2019 +0100 @@ -236,6 +236,8 @@ "cimport cpdef") else: keywords = QsciLexerPython.keywords(self, kwSet) + else: + keywords = QsciLexerPython.keywords(self, kwSet) return keywords