In <[EMAIL PROTECTED]>, Flyzone wrote: > for y in range(0, len(skip_lst) ): > if (re.search(skip_lst[y], line)): > skip=1 > break
Please try to avoid unnecessary indexes::
for regexp in skip_list:
if re.search(regexp, line):
skip = True
break
And if you don't intent to count the `skip`\s a `True` seems to be more
readable.
Ciao,
Marc 'BlackJack' Rintsch
--
http://mail.python.org/mailman/listinfo/python-list
