On Thu, 2005-10-27 at 14:00, Gregory PiƱero wrote:
> Not quite because if something(3) fails, I still want something(4) to
> run.  

def something_ignore_exceptions(x):
  try: something(x)
  except: pass

something_ignore_exceptions(1)
something_ignore_exceptions(2)
# etc...

HTH,

Carsten Haese


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

Reply via email to