diff -r ba2929194c7b -r d70c2a05a494 ExtensionCorba/LexerIDL.py --- a/ExtensionCorba/LexerIDL.py Sat Dec 23 15:48:47 2023 +0100 +++ b/ExtensionCorba/LexerIDL.py Sat Dec 23 19:43:44 2023 +0100 @@ -23,6 +23,7 @@ Constructor @param parent parent widget of this lexer + @type QObject """ QsciLexerIDL.__init__(self, parent) Lexer.__init__(self) @@ -59,8 +60,10 @@ """ Public method to check, if a style is a comment style. - @param style style to check (integer) - @return flag indicating a comment style (boolean) + @param style style to check + @type int + @return flag indicating a comment style + @rtype bool """ return style in [ QsciLexerIDL.Comment, @@ -73,8 +76,10 @@ """ Public method to check, if a style is a string style. - @param style style to check (integer) - @return flag indicating a string style (boolean) + @param style style to check + @type int + @return flag indicating a string style + @rtype bool """ return style in [ QsciLexerIDL.DoubleQuotedString, @@ -87,8 +92,10 @@ """ Public method to get the default keywords. - @param kwSet number of the keyword set (integer) - @return string giving the keywords (string) or None + @param kwSet number of the keyword set + @type int + @return string giving the keywords or None + @rtype str """ return QsciLexerIDL.keywords(self, kwSet) @@ -96,6 +103,7 @@ """ Public method to get the maximum keyword set. - @return maximum keyword set (integer) + @return maximum keyword set + @rtype int """ return 4