Or like below, although pylint complains about this: "consider using
   with". Less indentation this way.
   f = None
   try:
       f = open(FILENAME)
       records = f.readlines()
   except Exception:
       sys.exit(1)
   finally:
       if f is not None:
           f.close()
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to