Christopher J. Bottaro wrote:

> Basically I want to wrap every function in try/except automatically.

Simplest way to do that would be something like:

def wrapFunction(func):
    def wrapper(*args, **kargs):
        try:
            return func(*args, **kargs)
        except Exception, e:
            raise # your error handling code here
    return wrapper

HTH

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

Reply via email to