Is it good practice to do something like:

try:
    f1 = file('file1')
    f2 = file('file2')
except:
    # catch the exception

Or do you do a try/except for each open?

Robert

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

Reply via email to