Michael Savarese:
> 
> for line in readThis:
>     try:
>         thisKey = key.search(line).group(1)
>         thisMap = map.search(line).group(1)
>         thisParcel = parcel.search(line).group(1)
>     except:
>         continue

Why do you catch all exceptions in that loop? Remove the try-except
clause including the 'continue' and a stacktrace will probybably tell
you why your loop appears to do nothing.

J.
-- 
A passionate argument means more to me than a blockbuster movie.
[Agree]   [Disagree]
                 <http://www.slowlydownward.com/NODATA/data_enter2.html>

Attachment: signature.asc
Description: Digital signature

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to