eric6/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py

branch
maintenance
changeset 8043
0acf98cd089a
parent 7924
8a96736d465e
parent 7923
91e843545d9a
child 8176
31965986ecd1
equal deleted inserted replaced
7991:866adc8c315b 8043:0acf98cd089a
87 """ 87 """
88 Function to extract flags starting and ending with '__' from a line 88 Function to extract flags starting and ending with '__' from a line
89 comment. 89 comment.
90 90
91 @param line line to extract flags from (string) 91 @param line line to extract flags from (string)
92 @keyparam startComment string identifying the start of the comment (string) 92 @param startComment string identifying the start of the comment (string)
93 @keyparam endComment string identifying the end of a comment (string) 93 @param endComment string identifying the end of a comment (string)
94 @keyparam flagsLine flag indicating to check for a flags only line (bool) 94 @param flagsLine flag indicating to check for a flags only line (bool)
95 @return list containing the extracted flags (list of strings) 95 @return list containing the extracted flags (list of strings)
96 """ 96 """
97 flags = [] 97 flags = []
98 98
99 if not flagsLine or ( 99 if not flagsLine or (

eric ide

mercurial