QScintilla/Lexers/Lexer.py

changeset 2965
d133c7edd88a
parent 2302
f29e9405c851
child 3011
18292228c724
equal deleted inserted replaced
2964:84b65fb9e780 2965:d133c7edd88a
188 188
189 def isCommentStyle(self, style): 189 def isCommentStyle(self, style):
190 """ 190 """
191 Public method to check, if a style is a comment style. 191 Public method to check, if a style is a comment style.
192 192
193 @param style style to check (integer)
193 @return flag indicating a comment style (boolean) 194 @return flag indicating a comment style (boolean)
194 """ 195 """
195 return True 196 return True
196 197
197 def isStringStyle(self, style): 198 def isStringStyle(self, style):
198 """ 199 """
199 Public method to check, if a style is a string style. 200 Public method to check, if a style is a string style.
200 201
202 @param style style to check (integer)
201 @return flag indicating a string style (boolean) 203 @return flag indicating a string style (boolean)
202 """ 204 """
203 return True 205 return True
204 206
205 def keywords(self, kwSet): 207 def keywords(self, kwSet):

eric ide

mercurial