src/eric7/QScintilla/Lexers/LexerPOV.py

branch
eric7
changeset 9484
d2eb8f0a5bf0
parent 9473
3f23dbf37dbe
child 9653
e67609152c5e
equal deleted inserted replaced
9483:1208b0ef8ccb 9484:d2eb8f0a5bf0
75 75
76 @param kwSet number of the keyword set (integer) 76 @param kwSet number of the keyword set (integer)
77 @return string giving the keywords (string) or None 77 @return string giving the keywords (string) or None
78 """ 78 """
79 return QsciLexerPOV.keywords(self, kwSet) 79 return QsciLexerPOV.keywords(self, kwSet)
80
81
82 def createLexer(variant="", parent=None):
83 """
84 Function to instantiate a lexer object.
85
86 @param variant name of the language variant
87 @type str
88 @param parent parent widget of this lexer
89 @type QObject
90 @return instantiated lexer object
91 @rtype LexerPOV
92 """
93 return LexerPOV(parent=parent)

eric ide

mercurial