Reformatting.

This commit is contained in:
Achim D. Brucker 2017-10-19 16:44:36 +01:00
parent 1203b4d581
commit bb91e3874d
1 changed files with 17 additions and 18 deletions

View File

@ -165,7 +165,8 @@ def analyze_block(conf, path, block, first=False):
if not conf.reg_exp_comments is None: if not conf.reg_exp_comments is None:
for regexp in conf.reg_exp_comments: for regexp in conf.reg_exp_comments:
if conf.case_insensitive: if conf.case_insensitive:
regexps.append(re.compile(r'(' + regexp + ')', re.IGNORECASE)) regexps.append(
re.compile(r'(' + regexp + ')', re.IGNORECASE))
else: else:
regexps.append(re.compile(r'(' + regexp + ')')) regexps.append(re.compile(r'(' + regexp + ')'))
for regexp in regexps: for regexp in regexps:
@ -184,13 +185,15 @@ def analyze_block(conf, path, block, first=False):
if not conf.reg_exp_string_literals is None: if not conf.reg_exp_string_literals is None:
for regexp in conf.reg_exp_string_literals: for regexp in conf.reg_exp_string_literals:
if conf.case_insensitive: if conf.case_insensitive:
regexps.append(re.compile(r'(' + regexp + ')', re.IGNORECASE)) regexps.append(
re.compile(r'(' + regexp + ')', re.IGNORECASE))
else: else:
regexps.append(re.compile(r'(' + regexp + ')')) regexps.append(re.compile(r'(' + regexp + ')'))
if not conf.reg_exp_source is None: if not conf.reg_exp_source is None:
for regexp in conf.reg_exp_source: for regexp in conf.reg_exp_source:
if conf.case_insensitive: if conf.case_insensitive:
regexps.append(re.compile(r'(' + regexp + ')', re.IGNORECASE)) regexps.append(
re.compile(r'(' + regexp + ')', re.IGNORECASE))
else: else:
regexps.append(re.compile(r'(' + regexp + ')')) regexps.append(re.compile(r'(' + regexp + ')'))
string_match = False string_match = False
@ -419,11 +422,11 @@ if __name__ == "__main__":
choices=[0, 1, 2, 3], choices=[0, 1, 2, 3],
type=int, type=int,
default=2, default=2,
help= 'select level L of details shown for matches:\n' help='select level L of details shown for matches:\n' +
+ ' 0: exit 0 in case of match found, 1 otherwise\n' ' 0: exit 0 in case of match found, 1 otherwise\n' +
+ ' 1: show only matching filename\n' ' 1: show only matching filename\n' +
+ ' 2: show matching lines (NOT YET SUPPORTED)\n' ' 2: show matching lines (NOT YET SUPPORTED)\n' +
+ ' 3: show matching blocks') ' 3: show matching blocks')
main_parser.add_argument( main_parser.add_argument(
'-p', '-p',
'--parallel', '--parallel',
@ -437,22 +440,18 @@ if __name__ == "__main__":
'--latest-date', '--latest-date',
metavar='DATE', metavar='DATE',
type=str, type=str,
help= help='select latest crx from tar, released before DATE.\n' +
'select latest crx from tar, released before DATE.\n' 'Together with --latest-date, specifies all crx released in specified\n'
+ 'Together with --latest-date, specifies all crx released in specified\n' + 'date range.')
+ 'date range.'
)
main_parser.add_argument( main_parser.add_argument(
'-d', '-d',
'--from-date', '--from-date',
metavar='DATE', metavar='DATE',
type=str, type=str,
help= help='select oldest crx from tar released after DATE.\n' +
'select oldest crx from tar released after DATE.\n' 'Together with --from-date, specifies all crx released in specified\n'
+ 'Together with --from-date, specifies all crx released in specified\n' + 'date range.')
+ 'date range.'
)
main_parser.add_argument( main_parser.add_argument(
'-f', '-f',