eric6/Plugins/CheckerPlugins/CodeStyleChecker/DocStyle/DocStyleChecker.py

changeset 7900
72b88fb20261
parent 7894
4370a8b30648
child 7923
91e843545d9a
equal deleted inserted replaced
7899:ecf67e07b6e0 7900:72b88fb20261
148 @param select list of selected codes (list of string) 148 @param select list of selected codes (list of string)
149 @param ignore list of codes to be ignored (list of string) 149 @param ignore list of codes to be ignored (list of string)
150 @param expected list of expected codes (list of string) 150 @param expected list of expected codes (list of string)
151 @param repeat flag indicating to report each occurrence of a code 151 @param repeat flag indicating to report each occurrence of a code
152 (boolean) 152 (boolean)
153 @keyparam maxLineLength allowed line length (integer) 153 @param maxLineLength allowed line length (integer)
154 @keyparam docType type of the documentation strings 154 @param docType type of the documentation strings
155 (string, one of 'eric' or 'pep257') 155 (string, one of 'eric' or 'pep257')
156 """ 156 """
157 self.__select = tuple(select) 157 self.__select = tuple(select)
158 self.__ignore = ('',) if select else tuple(ignore) 158 self.__ignore = ('',) if select else tuple(ignore)
159 self.__expected = expected[:] 159 self.__expected = expected[:]

eric ide

mercurial