What's the best way to wrap a whole script in try..except?

Jon Ribbens jon+usenet at unequivocal.co.uk
Wed Jun 21 06:26:53 EDT 2006


In article <mailman.7287.1150885369.27775.python-list at python.org>, Hari Sekhon wrote:
> I want to wrap a whole script in try ... except. What is the best way of 
> doing this?

You could do this maybe:

  import sys

  def excepthook(exc_type, exc_value, tb):
    import modules_needed_to_notify_exception
    ...

  sys.excepthook = excepthook

  import modules_needed_by_script
  ...



More information about the Python-list mailing list